AWS MCP Server

AWS MCP Server

Provides read-only access to AWS resources including S3 buckets, EC2 instances, IAM users, and caller identity verification through the Model Context Protocol.

Category
Visit Server

README

AWS MCP Server

This is a Model Context Protocol (MCP) server that provides read-only access to AWS resources. It is built using TypeScript and the AWS SDK v3.

Features

This server exposes the following tools:

  • get_aws_caller_identity: Verify the current AWS credentials.
  • list_s3_buckets: List all S3 buckets.
  • list_ec2_instances: List EC2 instances in the configured region (or a specified region).
  • list_iam_users: List IAM users.

Prerequisites

  • Node.js (v16 or higher)
  • AWS Credentials (Access Key ID and Secret Access Key) with read-only permissions.

Setup

  1. Install dependencies:

    npm install
    
  2. Build the project:

    npm run build
    

    (Note: npm run build is not defined in package.json yet, command is npx tsc)

Usage (Private / Team)

Since this is a private tool, you can share it with your team in two main ways:

Option 1: Share via Git (Recommended)

  1. Push this code to your private repository (GitHub, GitLab, etc.).

  2. Team members should clone the repository:

    git clone <your-private-repo-url>
    cd mcp-server-aws
    npm install
    npm run build
    
  3. Configure MCP Client: Use the absolute path to the locally built file.

    {
      "mcpServers": {
        "aws-mcp": {
          "command": "node",
          "args": ["/path/to/cloned/repo/dist/index.js"],
          "env": {
            "AWS_ACCESS_KEY_ID": "YOUR_ACCESS_KEY",
            "AWS_SECRET_ACCESS_KEY": "YOUR_SECRET_KEY",
            "AWS_REGION": "us-east-1"
          }
        }
      }
    }
    

Option 2: Share as a Single File (.tgz)

You can package the server into a single file and send it to your team (Slack, Email, Sharepoint).

  1. Create the package:

    npm pack
    

    This creates a file like mcp-server-aws-1.0.0.tgz.

  2. Team members install it globally (or locally):

    npm install -g mcp-server-aws-1.0.0.tgz
    
  3. Configure MCP Client: If installed globally, they can run it directly:

    {
      "mcpServers": {
        "aws-mcp": {
          "command": "mcp-server-aws",
          "args": [],
          "env": { ... }
        }
      }
    }
    
    

### Option 2: Running Locally

If you cloned the repository and built it locally:

**Command**: `node`
**Args**: `/path/to/dist/index.js` (Absolute path recommended)

**Example Configuration (JSON)**:

```json
{
  "mcpServers": {
    "aws-mcp": {
      "command": "node",
      "args": ["/Users/bhaveshkumarparmar/Desktop/Shellkode/MSP-Projects/MCP-server-aws/dist/index.js"],
      "env": {
        "AWS_ACCESS_KEY_ID": "YOUR_ACCESS_KEY",
        "AWS_SECRET_ACCESS_KEY": "YOUR_SECRET_KEY",
        "AWS_REGION": "us-east-1"
      }
    }
  }
}

Development

To run the server in development mode (watching for changes):

npx tsx watch src/index.ts

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured