Query the AWS Knowledge MCP Server via mcporter for real-time AWS expertise.
The MCP server is aws-knowledge (must be configured in mcporter).
Route each question to the right tool:
| Question Type | Tool | Example |
|---|---|---|
| --- | --- | --- |
| General "how to" / best practices | search_documentation | "How to secure an S3 bucket" |
| Read a specific doc page | read_documentation | "Show me the Lambda pricing page" |
| Explore related topics | recommend | "What else should I know about VPC peering" |
| Is a service available in a region | get_regional_availability | "Is Bedrock available in ap-southeast-1" |
| List all AWS regions | list_regions | "What regions does AWS have" |
| Step-by-step task walkthrough | retrieve_agent_sops | "Walk me through deploying to ECS" |
All calls go through mcporter:
# Search documentation (most common)
mcporter call aws-knowledge.search_documentation query="<search terms>"
# Optionally filter by topic
mcporter call aws-knowledge.search_documentation query="<search terms>" topic="<topic>"
# Read a specific documentation page
mcporter call aws-knowledge.read_documentation url="<full doc URL>"
# Get recommendations for related content
mcporter call aws-knowledge.recommend url="<doc URL>"
# List all AWS regions
mcporter call aws-knowledge.list_regions
# Check regional availability
mcporter call aws-knowledge.get_regional_availability service="<service name>" region="<region id>"
# Get step-by-step SOPs
mcporter call aws-knowledge.retrieve_agent_sops query="<task description>"
read_documentation on URLs from search resultsretrieve_agent_sops first — these are tested step-by-step workflows.search_documentation → pick best result → read_documentation for full content → recommend for related reading.topic parameter to narrow results if the query is broad.For common query patterns organized by AWS domain, see references/query-patterns.md.
共 1 个版本