AWS MCP Server
A Model Context Protocol server implementation for operations on AWS resources
Overview
AWS MCP Server is an implementation of the Model Context Protocol designed for managing operations on AWS resources including S3 and DynamoDB.
To use the AWS MCP Server, clone the repository, configure AWS credentials, and run the server using the Claude desktop app.
- Supports S3 and DynamoDB operations - Automatic logging of all operations - Easy integration with the Claude desktop app for executing AWS commands
- Creating and managing S3 buckets and objects
- Handling DynamoDB tables and items
- Automated logging and audit of AWS operations
Add to your AI client
Use these steps to connect AWS MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-aws-rishikavikondala": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-aws-rishikavikondala"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-aws-rishikavikondala": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-aws-rishikavikondala"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-aws-rishikavikondala": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-aws-rishikavikondala"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-aws-rishikavikondala": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-aws-rishikavikondala"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-aws-rishikavikondala": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-aws-rishikavikondala"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-aws-rishikavikondala": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-aws-rishikavikondala"
]
}
}
}FAQ
What services does AWS MCP Server support?
Currently, it supports S3 and DynamoDB operations. More services may be added in the future.
Is there any cost associated with using AWS MCP Server?
The server itself is free to use, but standard AWS charges apply for resource usage.
How do I ensure my AWS credentials are safe?
Use IAM roles with minimal permissions for enhanced security and avoid hardcoding credentials.