cloudwatch-mcp
Allows searching and analyzing AWS CloudWatch logs, with tools for browsing log groups, listing log streams, searching logs with filter patterns, executing CloudWatch Logs Insights queries, and retrieving log group metadata.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@cloudwatch-mcpSearch for errors in the last hour"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CloudWatch MCP Server
A Model Context Protocol (MCP) server for searching and analyzing AWS CloudWatch logs. Supports configurable log groups, time-based searches, and service-specific log stream filtering.
Features
list_log_groups - Browse available CloudWatch log groups
list_log_streams - Filter streams by prefix and date (perfect for service-based streams like
sprive-backend-2026-02-20)search_logs - Search logs by time range and CloudWatch filter patterns
query_logs_insights - Execute advanced CloudWatch Logs Insights queries
get_log_group_info - Get log group metadata (retention, storage, etc.)
Related MCP server: OpenSearch Logs MCP Server
Installation
Using npx (Recommended)
No installation required. Add directly to your config:
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"cloudwatch": {
"command": "npx",
"args": ["-y", "github:nikhilchintawar/cloudwatch-mcp"],
"env": {
"AWS_REGION": "eu-west-2",
"AWS_PROFILE": "your-profile",
"CLOUDWATCH_LOG_GROUP": "/aws/eks/spv-default-prod-eks/application"
}
}
}
}Claude Code (~/.claude/settings.json):
{
"mcpServers": {
"cloudwatch": {
"command": "npx",
"args": ["-y", "github:nikhilchintawar/cloudwatch-mcp"],
"env": {
"AWS_REGION": "eu-west-2",
"AWS_PROFILE": "your-profile",
"CLOUDWATCH_LOG_GROUP": "/aws/eks/spv-default-prod-eks/application"
}
}
}
}Manual Installation
# Clone the repository
git clone https://github.com/nikhilchintawar/cloudwatch-mcp.git
cd cloudwatch-mcp
# Install dependencies
npm install
# Build
npm run buildThen add to your config:
{
"mcpServers": {
"cloudwatch": {
"command": "node",
"args": ["/absolute/path/to/cloudwatch-mcp/build/index.js"],
"env": {
"AWS_REGION": "eu-west-2",
"AWS_PROFILE": "your-profile",
"CLOUDWATCH_LOG_GROUP": "/aws/eks/spv-default-prod-eks/application"
}
}
}
}Configuration
Config File Locations
Claude Desktop (macOS):
~/Library/Application Support/Claude/claude_desktop_config.jsonClaude Desktop (Windows):
%APPDATA%\Claude\claude_desktop_config.jsonClaude Code:
~/.claude/settings.json
Environment Variables
Variable | Required | Description |
| Yes | AWS region (e.g., |
| No | Default log group path |
| No | Default stream prefix filter |
AWS Authentication
The server uses the AWS SDK's default credential provider chain. Choose one method:
Option 1: AWS Profile (Recommended)
{
"env": {
"AWS_REGION": "eu-west-2",
"AWS_PROFILE": "your-profile-name"
}
}Option 2: Temporary Credentials
{
"env": {
"AWS_REGION": "eu-west-2",
"AWS_ACCESS_KEY_ID": "your-access-key",
"AWS_SECRET_ACCESS_KEY": "your-secret-key",
"AWS_SESSION_TOKEN": "your-session-token"
}
}Option 3: AWS SSO
# Login first
aws sso login --profile your-sso-profile{
"env": {
"AWS_REGION": "eu-west-2",
"AWS_PROFILE": "your-sso-profile"
}
}Option 4: IAM Role - Automatic when running on EC2, ECS, or Lambda.
Usage Examples
Once configured, you can use natural language to interact with CloudWatch:
"Search for errors in the last hour"
"Show me logs from sprive-backend for today"
"Find all ERROR or WARN messages in the past 30 minutes"
"Run a Logs Insights query to count errors by service"
"List all log streams for 2026-02-20"
Available Tools
list_log_groups
List available CloudWatch log groups.
Parameter | Required | Description |
| No | Filter by name prefix |
| No | Max results (default: 50) |
list_log_streams
List log streams with smart date/service filtering.
Parameter | Required | Description |
| No | Log group name (uses env var default) |
| No | Filter by stream prefix (e.g., |
| No | Filter by date ( |
| No | Max results (default: 50) |
| No |
|
search_logs
Search logs using CloudWatch filter patterns.
Parameter | Required | Description |
| No | Log group name |
| No | Specific stream names to search |
| No | Filter streams by prefix |
| No | CloudWatch filter pattern |
| Yes | Relative ( |
| No | End time (default: now) |
| No | Max results (default: 100) |
query_logs_insights
Execute CloudWatch Logs Insights queries.
Parameter | Required | Description |
| No | Array of log group names |
| Yes | Logs Insights query string |
| Yes | Start time |
| No | End time (default: now) |
| No | Max results (default: 1000) |
get_log_group_info
Get detailed information about a log group.
Parameter | Required | Description |
| No | Log group name |
Time Formats
The startTime and endTime parameters support:
Relative:
30m,1h,2d,1w(minutes, hours, days, weeks ago)ISO 8601:
2026-02-20T14:30:00ZDate:
2026-02-20Unix timestamp:
1740067200000(ms) or1740067200(s)
Filter Patterns
CloudWatch filter patterns for searching logs:
Simple text:
ERROROR pattern:
?ERROR ?WARNJSON field:
{ $.level = "error" }Multiple conditions:
{ $.status >= 400 && $.duration > 1000 }
See AWS documentation for full syntax.
Development
# Watch mode for development
npm run dev
# Build for production
npm run build
# Test with MCP Inspector
AWS_REGION=eu-west-2 AWS_PROFILE=your-profile \
npx @modelcontextprotocol/inspector node build/index.jsLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nikhilchintawar/cloudwatch-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server