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

@schuettc/aws-logs-mcp

v0.0.2

Published

Model Context Protocol (MCP) server for AWS Logs and CloudTrail Events

Readme

AWS Logs MCP

A Model Context Protocol (MCP) server that enables AI assistants to securely access and query AWS CloudWatch Logs and CloudTrail Events. Simplify troubleshooting and monitoring by giving your AI assistants direct, secure access to your AWS logs and events in near real-time.

Quick Installation

Get started in seconds with one-click installation in VS Code:

Install with NPX in VS Code Install with Docker in VS Code

What You Can Do

AWS Logs MCP connects your AI assistants to your AWS environment, allowing them to:

  • Query CloudWatch Logs to troubleshoot application issues
  • Examine CloudTrail events to understand recent AWS operations
  • Analyze log patterns for error investigation
  • Monitor real-time log streams during deployments

Your AWS credentials remain on your local machine and are only used for accessing AWS services.

Deployment Options

This MCP server supports two deployment modes:

1. Direct stdio Integration (Recommended for Claude CLI)

Use this method for direct integration with Claude in the terminal:

# Register the MCP server with Claude
claude mcp add aws-logs -s user -- npx @schuettc/aws-logs-mcp --stdio

This approach is seamless - it runs the server in stdio mode without any separate process.

2. HTTP Server Mode (For Apps & Desktop Clients)

Run the server on a port accessible to your LLM application:

# Start the HTTP server
npx @schuettc/aws-logs-mcp

# Then register with Claude's desktop app
claude mcp add aws-logs --url http://localhost:3010/mcp

AWS Authentication

During installation, you can choose your preferred authentication method:

  • AWS Profile (recommended): Use your existing AWS CLI profiles
  • IAM Credentials: Provide access key and secret directly
  • IAM Role: Automatically use instance roles when running on AWS services

Manual Installation

If you prefer to install manually:

# Clone the repository
git clone https://github.com/schuettc/aws-logs-mcp.git
cd aws-logs-mcp

# Install dependencies
pnpm install

# Set up environment variables
cp .env.example .env
# Edit .env to configure your AWS credentials

# Build and start the server (HTTP mode)
pnpm build
pnpm start

# Or in stdio mode
pnpm start:stdio

Development

# HTTP server mode
pnpm dev

# stdio mode
pnpm dev:stdio

Documentation

For complete documentation including available tools, AWS permissions, and advanced configuration, visit our GitHub Pages Documentation Site.

License

MIT-0