npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iflow-mcp/ihatesea69-aws-mcp-server

v1.0.0

Published

[![GitHub Stars](https://img.shields.io/github/stars/ihatesea69/AWS-MCP?style=social)](https://github.com/ihatesea69/AWS-MCP) [![GitHub Forks](https://img.shields.io/github/forks/ihatesea69/AWS-MCP?style=social)](https://github.com/ihatesea69/AWS-MCP/fork

Readme

AWS MCP: Model Context Protocol on AWS

GitHub Stars GitHub Forks GitHub Issues Node.js TypeScript

Introduction to Model Context Protocol (MCP)

Getting Started with MCP

MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to large language models (LLMs). Think of MCP like a USB-C port for AI applications. Just as USB-C provides a standard method for connecting devices to various accessories, MCP provides a standard method for connecting AI models to different data sources and tools.

Why Use MCP?

MCP enables building complex agents and automated workflows based on LLMs. LLMs often need to integrate with data and tools, and MCP provides:

  • A growing list of ready-to-use integrations that allow your LLM to connect directly.
  • Flexibility to switch between LLM providers.
  • Best data security practices within your infrastructure.

General Architecture

At its core, MCP follows a client-server architecture where a host application can connect to multiple servers:

  • MCP Hosts: Programs like Claude Desktop, IDEs, or AI tools that want to access data through MCP.
  • MCP Clients: Protocol clients that maintain 1:1 connections with servers.
  • MCP Servers: Lightweight programs, each providing specific capabilities through the Model Context Protocol.
  • Local Data Sources: Files, databases, and services on your computer that MCP servers can securely access.
  • Remote Services: External systems available on the Internet (e.g., via APIs) that MCP servers can connect to.

Introduction to AWS MCP

AWS MCP (Model Context Protocol) is a server that enables AI assistants like Claude to interact with AWS environments through natural language. This makes it easy to manage and query AWS resources without using the traditional AWS Console or CLI.

AWS MCP can be considered a powerful alternative to Amazon Q, offering greater flexibility and security.

Key Features

  • Query and modify AWS resources using natural language
  • Support for multiple AWS profiles and SSO authentication
  • Multi-region AWS support
  • Secure credential management (credentials are never exposed externally, only used locally)
  • Local execution with your AWS credentials

Prerequisites

To use AWS MCP, ensure your environment has:

  • Node.js
  • Claude Desktop application
  • Locally configured AWS credentials (AWS Configure) (stored in ~/.aws/)

Installation Guide

1. Clone the repository

First, download the source code from GitHub to your computer:

git clone https://github.com/ihatesea69/AWS-MCP
cd aws-mcp

2. Install dependencies

You can use pnpm or npm to install:

pnpm install
# or
npm install

Configuration and Usage with Claude Desktop

1. Configure in Claude Desktop

Open the Claude Desktop application and navigate to:

Settings -> Developer -> Edit Config

Then add the following entry to the claude_desktop_config.json file:

{
  "mcpServers": {
    "aws": {
      "command": "npm", // or pnpm
      "args": [
        "--silent",
        "--prefix",
        "/Users/<YOUR USERNAME>/aws-mcp",
        "start"
      ]
    }
  }
}

Note: Replace /Users/<YOUR USERNAME>/aws-mcp with the actual path to your project directory.

2. Restart Claude Desktop

Run your project by navigating (cd) to the directory containing index.ts and running the NPM start command.

After editing the configuration, restart the Claude Desktop application. If the installation is correct, you will see a successful connection message with MCP.

3. Using AWS MCP in Claude

You can start using it by entering natural language commands such as:

  • "List available AWS profiles"
  • "List all EC2 instances in my account"
  • "Show me S3 buckets with their sizes"
  • "What Lambda functions are deployed in us-east-1?"
  • "List all ECS clusters and their services"

Configuration with nvm

If you use Node.js through nvm, compile from source first and add the following configuration:

{
  "mcpServers": {
    "aws": {
      "command": "/Users/<USERNAME>/.nvm/versions/node/v20.10.0/bin/node",
      "args": [
        "<WORKSPACE_PATH>/aws-mcp/node_modules/tsx/dist/cli.mjs",
        "<WORKSPACE_PATH>/aws-mcp/index.ts",
        "--prefix",
        "<WORKSPACE_PATH>/aws-mcp",
        "start"
      ]
    }
  }
}

Note: Replace <USERNAME> and <WORKSPACE_PATH> with the actual paths on your system.

Conclusion

AWS MCP is a powerful tool that allows you to manage AWS resources using the Claude AI assistant. With the ability to query and control through natural language, AWS MCP significantly simplifies AWS management. If you are looking for an alternative to Amazon Q, AWS MCP is a worthy consideration!

Credits

Original source: https://github.com/RafalWilinski/aws-mcp