AWS MCP服务器
AWS MCP Servers

原始链接: https://github.com/awslabs/mcp

这个单体仓库包含一套来自 AWS Labs 的专业 MCP(管理与协调协议)服务器,旨在将 AWS 最佳实践直接集成到您的开发工作流程中。这些服务器涵盖了管理其他 MCP 服务器、访问 Amazon Bedrock 知识库、分析 AWS CDK 项目、分析 AWS 成本以及使用 Amazon Nova Canvas 生成图像等领域。 每个服务器都提供特定功能,例如自然语言查询、成本报告生成、基础设施即代码分析和可自定义的图像创建。安装通常涉及使用 `uv` 和 Python,配置 AWS 凭证,并将服务器添加到您的 MCP 客户端配置(例如 `~/.aws/amazonq/mcp.json`)。各个服务器的 README 文件提供了详细的说明和配置选项。在线提供全面的文档,包括指南、API 参考和使用示例。本项目采用 Apache-2.0 许可证。请注意,用户应在使用任何 MCP 服务器之前自行进行安全性和质量控制评估。

Hacker News 最新 | 过去 | 评论 | 提问 | 展示 | 招聘 | 提交 登录 AWS MCP 服务器 (github.com/awslabs) 7 分,来自 wseqyrku,2 小时前 | 隐藏 | 过去 | 收藏 | 2 条评论 loudmax 19 分钟前 [–] MCP 是 Anthropic 的模型上下文协议 (https://www.anthropic.com/news/model-context-protocol),旨在成为 AI 模型之间通信的标准方法。亚马逊是 Anthropic 的主要支持者之一,负责托管其基础设施,就像微软通过在 Azure 上托管 ChatGPT 而成为 OpenAI 的主要支持者一样。 回复 hdjjhhvvhga 16 分钟前 | 父评论 [–] 谢谢,文档非常努力地避免定义 MCP 的含义。 回复 加入我们 6 月 16-17 日在旧金山举办的 AI 初创企业学校! 指南 | 常见问题 | 列表 | API | 安全 | 法律 | 申请 YC | 联系我们 搜索:
相关文章

原文

A suite of specialized MCP servers that bring AWS best practices directly to your development workflow.

GitHub License

This monorepo contains the following MCP servers:

PyPI version

A server for managing and coordinating other AWS Labs MCP servers.

  • Automatic MCP Server Management
  • Planning and guidance to orchestrate AWS Labs MCP Servers
  • UVX Installation Support
  • Centralized Configuration

Learn more | Documentation

Amazon Bedrock Knowledge Bases Retrieval MCP Server

PyPI version

A server for accessing Amazon Bedrock Knowledge Bases.

  • Discover knowledge bases and their data sources
  • Query knowledge bases with natural language
  • Filter results by data source
  • Rerank results

Learn more | Documentation

PyPI version

A server for AWS CDK best practices.

  • AWS CDK project analysis and assistance
  • CDK construct recommendations
  • Infrastructure as Code best practices

Learn more | Documentation

PyPI version

A server for AWS Cost Analysis.

  • Analyze and visualize AWS costs
  • Query cost data with natural language
  • Generate cost reports and insights

Learn more | Documentation

Amazon Nova Canvas MCP Server

PyPI version

A server for generating images using Amazon Nova Canvas.

  • Text-based image generation with customizable parameters
  • Color-guided image generation with specific palettes
  • Workspace integration for saving generated images
  • AWS authentication through profiles

Learn more | Documentation

Each server has specific installation instructions. Generally, you can:

  1. Install uv from Astral
  2. Install Python using uv python install 3.10
  3. Configure AWS credentials with access to required services
  4. Add the server to your MCP client configuration

Example configuration for Amazon Q CLI MCP (~/.aws/amazonq/mcp.json):

{
  "mcpServers": {
    "awslabs.core-mcp-server": {
      "command": "uvx",
      "args": ["awslabs.core-mcp-server@latest"],
      "env": {
        "FASTMCP_LOG_LEVEL": "ERROR",
        "MCP_SETTINGS_PATH": "path to your mcp settings file"
      }
    },
    "awslabs.nova-canvas-mcp-server": {
      "command": "uvx",
      "args": [
        "awslabs.core-mcp-server@latest",
      ],
      "env": {
        "AWS_PROFILE": "your-aws-profile",
        "AWS_REGION": "us-east-1",
        "FASTMCP_LOG_LEVEL": "ERROR"
      }
    },
    "awslabs.bedrock-kb-retrieval-mcp-server": {
      "command": "uvx",
      "args": ["awslabs.bedrock-kb-retrieval-mcp-server@latest"],
      "env": {
        "AWS_PROFILE": "your-aws-profile",
        "AWS_REGION": "us-east-1",
        "FASTMCP_LOG_LEVEL": "ERROR"
      }
    },
    "awslabs.cost-analysis-mcp-server": {
      "command": "uvx",
      "args": ["awslabs.cost-analysis-mcp-server@latest"],
      "env": {
        "AWS_PROFILE": "your-aws-profile",
        "FASTMCP_LOG_LEVEL": "ERROR"
      }
    },
    "awslabs.cdk-mcp-server": {
      "command": "uvx",
      "args": ["awslabs.cdk-mcp-server@latest"],
      "env": {
        "FASTMCP_LOG_LEVEL": "ERROR"
      }
    }
  }
}

See individual server READMEs for specific requirements and configuration options.

Comprehensive documentation for all servers is available on our documentation website.

Documentation for each server:

Documentation includes:

  • Detailed guides for each server
  • Installation and configuration instructions
  • API references
  • Usage examples

See CONTRIBUTING for more information.

This project is licensed under the Apache-2.0 License.

Before using an MCP Server, you should consider conducting your own independent assessment to ensure that your use would comply with your own specific security and quality control practices and standards, as well as the laws, rules, and regulations that govern you and your content.

联系我们 contact @ memedata.com