forked from obot-platform/mcp-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaws_knowledge.yaml
More file actions
76 lines (53 loc) · 3.95 KB
/
aws_knowledge.yaml
File metadata and controls
76 lines (53 loc) · 3.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: AWS Knowledge
shortDescription: Check AWS service regional availability and search AWS documentation
description: 'A Model Context Protocol (MCP) server that provides comprehensive AWS knowledge access including documentation search, regional availability checking, and content recommendations. Built and hosted by AWS Labs.
## Features
- **Regional Availability**: Check AWS service and resource availability across regions for both API operations and CloudFormation resources
- **Region Information**: List all AWS regions with their identifiers and friendly names
- **Documentation Search**: Search across all AWS documentation using the official AWS Documentation Search API
- **Documentation Reader**: Fetch and convert AWS documentation pages to markdown format with pagination support
- **Content Recommendations**: Get related documentation recommendations including highly rated, new, similar, and commonly viewed next pages
## What you''ll need to connect
**No Setup Required**: AWS Knowledge MCP server is hosted by AWS and works out-of-the-box with no API keys or configuration needed.
## Basic Usage
Examples:
- "Is AWS Lambda available in eu-west-1?"
- "Check if AWS::EC2::Instance CloudFormation resource is available in ap-southeast-2"
- "List all AWS regions"
- "Search for S3 bucket versioning documentation"
- "Read documentation from https://docs.aws.amazon.com/lambda/latest/dg/lambda-invocation.html"
- "Recommend related content for the Lambda invocation documentation page"
'
metadata:
categories: Documentation & Learning, Developer Tools
icon: https://avatars.githubusercontent.com/u/3299148?s=48&v=4
repoURL: https://github.com/awslabs/mcp/tree/main/src/aws-knowledge-mcp-server
runtime: remote
remoteConfig:
fixedURL: https://knowledge-mcp.global.api.aws
toolPreview:
- name: get_regional_availability
description: Retrieve AWS regional availability information for SDK service APIs and CloudFormation resources. Check real-time availability across AWS regions with support for batch queries and filtering.
params:
region: Target AWS region code (e.g., us-east-1, eu-west-1, ap-southeast-2)
resource_type: Type of AWS resource to check - 'api' for API operations or 'cfn' for CloudFormation resources
filters: Optional list of specific resources to check. For APIs use format 'SdkServiceId+APIOperation' (e.g., ['IAM+GetSSHPublicKey']). For CloudFormation use resource type (e.g., ['AWS::EC2::Instance'])
next_token: Pagination token for retrieving additional results (only when no filters specified)
- name: list_regions
description: Retrieve a list of all AWS regions including their region codes and human-friendly names. Useful for infrastructure planning and region validation.
params: {}
- name: read_documentation
description: Fetch and convert an AWS documentation page to markdown format. Supports pagination for long documents through start_index parameter. Works with docs.aws.amazon.com and aws.amazon.com domains.
params:
url: URL of the AWS documentation page to read
max_length: Maximum number of characters to return (optional)
start_index: Starting character index for pagination of long documents (optional)
- name: search_documentation
description: Search AWS documentation using the official AWS Documentation Search API. Searches across AWS docs, blogs, solutions library, getting started guides, architecture center, and prescriptive guidance.
params:
search_phrase: Search phrase to use (use specific technical terms and include service names for better results)
limit: Maximum number of results to return (optional)
- name: recommend
description: Get content recommendations for an AWS documentation page. Returns four categories - highly rated (popular pages), new (recently added), similar (related topics), and journey (commonly viewed next).
params:
url: URL of the AWS documentation page to get recommendations for (must be from docs.aws.amazon.com domain)