Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
FASTMCP_LOG_LEVEL | No | Log level for the MCP server | ERROR |
AWS_DOCUMENTATION_PARTITION | No | Set to 'aws-cn' to query AWS China documentation instead of global AWS documentation | aws |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
read_documentation | Fetch and convert an AWS documentation page to markdown format. UsageThis tool retrieves the content of an AWS documentation page and converts it to markdown format. For long documents, you can make multiple calls with different start_index values to retrieve the entire content in chunks. URL Requirements
Example URLs
Output FormatThe output is formatted as markdown text with:
Handling Long DocumentsIf the response indicates the document was truncated, you have several options:
Args: ctx: MCP context for logging and error handling url: URL of the AWS documentation page to read max_length: Maximum number of characters to return start_index: On return output starting at this character index Returns: Markdown content of the AWS documentation |
search_documentation | Search AWS documentation using the official AWS Documentation Search API. UsageThis tool searches across all AWS documentation for pages matching your search phrase. Use it to find relevant documentation when you don't have a specific URL. Search Tips
Result InterpretationEach result includes:
Args: ctx: MCP context for logging and error handling search_phrase: Search phrase to use limit: Maximum number of results to return Returns: List of search results with URLs, titles, and context snippets |
recommend | Get content recommendations for an AWS documentation page. UsageThis tool provides recommendations for related AWS documentation pages based on a given URL. Use it to discover additional relevant content that might not appear in search results. Recommendation TypesThe recommendations include four categories:
When to Use
Finding New FeaturesTo find newly released information about a service:
Result InterpretationEach recommendation includes:
Args: ctx: MCP context for logging and error handling url: URL of the AWS documentation page to get recommendations for Returns: List of recommended pages with URLs, titles, and context |