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

@imazhar101/mcp-aws-server

v1.0.3

Published

AWS MCP Server - Provides tools for interacting with AWS services (DynamoDB, Lambda, API Gateway)

Downloads

298

Readme

AWS MCP Server

AWS MCP Server provides Model Context Protocol tools for interacting with AWS services including DynamoDB, Lambda, and API Gateway.

Features

DynamoDB

  • List tables
  • Describe table schema
  • Put, get, update, delete items
  • Query and scan operations
  • Batch operations

Lambda

  • List functions
  • Get function details
  • Invoke functions
  • Update function code and configuration

API Gateway

  • REST API management (v1)
  • HTTP/WebSocket API management (v2)
  • Resource and method management
  • Integration setup
  • Deployment management

Configuration

Set the following environment variables:

export AWS_REGION=us-east-1
export AWS_ACCESS_KEY_ID=your-access-key
export AWS_SECRET_ACCESS_KEY=your-secret-key

Or use AWS profiles, IAM roles, or other AWS credential methods.

Installation & Usage

Option 1: npm Package (Recommended)

# Install globally
npm install -g @imazhar101/mcp-aws-server

# Or run directly with npx
npx @imazhar101/mcp-aws-server

Option 2: Build from Source

# From project root
npm install
npm run build

# The server will be available at:
./dist/servers/aws/src/index.js

Cline MCP Configuration

To use this server with Cline (VS Code extension), add the following to your Cline MCP settings:

File Location:

  • macOS: ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
  • Windows: %APPDATA%/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
  • Linux: ~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json

Configuration:

{
  "mcpServers": {
    "aws-integration": {
      "command": "npx",
      "args": ["@imazhar101/mcp-aws-server"],
      "env": {
        "AWS_REGION": "us-east-1",
        "AWS_ACCESS_KEY_ID": "your-access-key-id",
        "AWS_SECRET_ACCESS_KEY": "your-secret-access-key"
      },
      "disabled": false,
      "alwaysAllow": [
        "dynamodb_list_tables",
        "lambda_list_functions",
        "apigateway_list_rest_apis"
      ]
    }
  }
}

Tools

DynamoDB Tools

  • dynamodb_list_tables - List all DynamoDB tables
  • dynamodb_describe_table - Get table schema and details
  • dynamodb_put_item - Insert or replace an item
  • dynamodb_get_item - Retrieve an item by key
  • dynamodb_update_item - Update an existing item
  • dynamodb_delete_item - Delete an item
  • dynamodb_query - Query items with conditions
  • dynamodb_scan - Scan all items in a table

Lambda Tools

  • lambda_list_functions - List all Lambda functions
  • lambda_get_function - Get function details
  • lambda_invoke_function - Invoke a function
  • lambda_update_function_code - Update function code
  • lambda_update_function_configuration - Update function settings

API Gateway Tools

  • apigateway_list_rest_apis - List REST APIs
  • apigateway_create_rest_api - Create a new REST API
  • apigateway_get_resources - Get API resources
  • apigateway_create_resource - Create a new resource
  • apigateway_put_method - Add a method to a resource
  • apigateway_put_integration - Add integration to a method
  • apigateway_create_deployment - Deploy the API
  • apigatewayv2_list_apis - List HTTP/WebSocket APIs
  • apigatewayv2_create_api - Create HTTP/WebSocket API
  • apigatewayv2_get_routes - Get API routes
  • apigatewayv2_create_route - Create a new route

Required AWS Permissions

The server requires appropriate AWS IAM permissions for the services you want to use:

DynamoDB

  • dynamodb:ListTables
  • dynamodb:DescribeTable
  • dynamodb:PutItem
  • dynamodb:GetItem
  • dynamodb:UpdateItem
  • dynamodb:DeleteItem
  • dynamodb:Query
  • dynamodb:Scan
  • dynamodb:BatchGetItem
  • dynamodb:BatchWriteItem

Lambda

  • lambda:ListFunctions
  • lambda:GetFunction
  • lambda:InvokeFunction
  • lambda:UpdateFunctionCode
  • lambda:UpdateFunctionConfiguration

API Gateway

  • apigateway:GET
  • apigateway:POST
  • apigateway:PUT
  • apigateway:DELETE