aws-cli-mcp-server

A simple MCP server that provides a bridge to execute AWS CLI commands.

GitHubスター

1

ユーザー評価

未評価

フォーク

0

イシュー

0

閲覧数

0

お気に入り

0

README
AWS CLI MCP Server

A simple MCP server that provides a bridge to execute AWS CLI commands.

Tools
  • aws_cli_read: For read-only AWS operations (listing, describing resources)
  • aws_cli_write: For write operations (creating, modifying, deleting resources)
Setup
1. Configure AWS CLI

Set up AWS SSO following this guide.

2. Run Server

Using locally:

uvx --env AWS_PROFILE=your-sso-profile aws-cli-mcp-server

Using MCP configuration:

{
  "mcpServers": {
    "aws-cli-mcp-server": {
      "command": "uvx",
      "args": ["aws-cli-mcp-server"],
      "env": {
        "AWS_PROFILE": "your-sso-profile"
      }
    }
  }
}

Using access keys:

{
  "mcpServers": {
    "aws-cli-mcp-server": {
      "command": "uvx",
      "args": ["aws-cli-mcp-server"],
      "env": {
        "AWS_ACCESS_KEY_ID": "your-access-key",
        "AWS_SECRET_ACCESS_KEY": "your-secret-key"
      }
    }
  }
}
作者情報

2

フォロワー

2

リポジトリ

0

Gist

0

貢献数

スレッド