{"id":26775462,"url":"https://github.com/codewithdpk/aws-mcp-server","last_synced_at":"2026-04-17T11:33:46.556Z","repository":{"id":284939254,"uuid":"956545297","full_name":"codewithdpk/aws-mcp-server","owner":"codewithdpk","description":"MCP (Model context protocol) server to connect MCP client such as Claude Desktop. ","archived":false,"fork":false,"pushed_at":"2025-03-28T13:36:43.000Z","size":108,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T14:21:57.688Z","etag":null,"topics":["aiagent","anthropic","chatgpt","claude-ai","mcp","mcp-server","model-context-protocol","openai"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codewithdpk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-28T12:41:10.000Z","updated_at":"2025-03-28T13:36:47.000Z","dependencies_parsed_at":"2025-03-28T14:22:00.241Z","dependency_job_id":"c4a50474-578c-4837-9191-e973617e9c65","html_url":"https://github.com/codewithdpk/aws-mcp-server","commit_stats":null,"previous_names":["codewithdpk/aws-mcp-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codewithdpk/aws-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithdpk%2Faws-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithdpk%2Faws-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithdpk%2Faws-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithdpk%2Faws-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codewithdpk","download_url":"https://codeload.github.com/codewithdpk/aws-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codewithdpk%2Faws-mcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31927982,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T10:35:34.458Z","status":"ssl_error","status_checked_at":"2026-04-17T10:35:09.472Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aiagent","anthropic","chatgpt","claude-ai","mcp","mcp-server","model-context-protocol","openai"],"created_at":"2025-03-29T03:18:24.973Z","updated_at":"2026-04-17T11:33:46.535Z","avatar_url":"https://github.com/codewithdpk.png","language":"JavaScript","funding_links":[],"categories":["🤖 AI/ML"],"sub_categories":[],"readme":"\n# AWS Instances MCP (Model Context Protocol) Server\n\n## Overview\nThis is a Model Context Protocol (MCP) server that retrieves and lists running AWS EC2 instances for a specified region using the AWS SDK.\n\n## Prerequisites\n- Node.js (version 18 or later)\n- AWS Account\n- AWS Access Key and Secret Access Key\n\n## Setup Instructions\n\n### 1. Clone the Repository\n```bash\ngit clone https://github.com/codewithdpk/aws-mcp-server.git\ncd aws-mcp-server\n```\n\n### 2. Install Dependencies\n```bash\nnpm install\n```\n\n### 3. Configure AWS Credentials\nCreate a `.env` file in the project root with your AWS credentials:\n```\nAWS_ACCESS_KEY_ID=your_access_key_id\nAWS_ACCESS_SECRET_KEY=your_secret_access_key\n```\n\n### 4. Build the server\nTo build the server locally:\n```bash\nnpm run build\n```\n\n### 5. Testing your server with Claude for Desktop\n\nClaude for Desktop is not yet available on Linux. Linux users can proceed to the Building a client tutorial to build an MCP client that connects to the server we just built.\n\nFirst, make sure you have Claude for Desktop installed. You can install the latest version here. If you already have Claude for Desktop, make sure it’s updated to the latest version.\n\nWe’ll need to configure Claude for Desktop for whichever MCP servers you want to use. To do this, open your Claude for Desktop App configuration at `~/Library/Application Support/Claude/claude_desktop_config.json` in a text editor. Make sure to create the file if it doesn’t exist.\n\nYou’ll then add your servers in the `mcpServers` key. The MCP UI elements will only show up in Claude for Desktop if at least one server is properly configured.\n\nIn this case, we’ll add our single weather server like so:\n```json\n{\n    \"mcpServers\": {\n        \"aws-mcp-server\": {\n            \"command\": \"node\",\n            \"args\": [\n                \"/ABSOLUTE/PATH/TO/PARENT/FOLDER/aws-mcp-server/build/index.js\"\n            ]\n        }\n    }\n}\n```\n\n#### Troubleshooting\n- Verify AWS credentials have appropriate EC2 read permissions\n- Ensure you have the latest version of Claude Desktop App\n- Check that all dependencies are correctly installed\n\n## Features\n- Retrieve running EC2 instances for a specified AWS region\n- Support for multiple availability zones\n- Detailed instance information including:\n  - Instance ID\n  - Instance Type\n  - Public IP\n  - Private IP\n  - Instance State\n\n## Tools\n- `get-aws-instances`: Retrieves list of running AWS instances for a given region\n\n## Example Usage\n```typescript\nserver.tool(\"get-aws-instances\", {\n  region: \"ap-south-1\"\n})\n```\n\n## Technologies\n- MCP\n- TypeScript\n- AWS SDK\n- Model Context Protocol (MCP)\n- Zod for type validation\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewithdpk%2Faws-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodewithdpk%2Faws-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodewithdpk%2Faws-mcp-server/lists"}