monitoring-mcp-server
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., "@monitoring-mcp-serverList stopped EC2 instances in ap-south-1."
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.
monitoring-mcp-server
A read-only MCP server for AWS observability — EC2, EKS, RDS, ElastiCache Redis, and CloudWatch. Built as a self-contained alternative when the official AWS MCP servers aren't permitted. No create, modify, or delete calls exist anywhere in it.
Tools (19)
Area | Tools |
EC2 |
|
EKS |
|
RDS |
|
Redis |
|
CloudWatch |
|
Related MCP server: AWS MCP Server
Design
One API call per health snapshot. Metrics use GetMetricData, which carries up
to 500 queries per request — so get_rds_instance_metrics pulls 17 metrics in a
single call instead of 17 round trips.
Adaptive periods. CloudWatch drops fine-grained data as it ages (60s → 15 days, 300s → 63 days, 3600s → 455 days). The server picks the smallest valid period for your window and caps the result at ~180 datapoints, so a 30-day query returns a readable series instead of an empty one.
Explicit gaps. A metric with no data comes back with a note explaining why
rather than being silently dropped — so "healthy but idle" is distinguishable from
"metric not published for this instance family."
Actionable errors. Botocore exceptions map to guidance: expired SSO tokens, missing permissions, throttling, wrong region, and unknown resource ids each get a specific message instead of a traceback.
Typed responses. All tools return Pydantic models, so tool output shape is stable.
Per-call overrides. Every tool accepts region and profile_name; metric tools
accept window_minutes, period_seconds, and include_datapoints.
Requirements
Python 3.10+
Credentials via the standard AWS chain (env vars, shared config, SSO, or IRSA).
Read-only IAM:
ec2:Describe*,eks:List*/eks:Describe*,rds:Describe*,elasticache:Describe*,cloudwatch:GetMetricData,cloudwatch:ListMetrics,cloudwatch:DescribeAlarms,cloudwatch:DescribeAlarmHistory.ReadOnlyAccessorCloudWatchReadOnlyAccess+ service read policies cover it.
EKS note: Container Insights must be enabled for
ContainerInsightsmetrics. Without it, inventory tools still work and metric tools tell you it's disabled.
Install
cd monitoring-mcp-server
python3 -m venv .venv && source .venv/bin/activate
pip install -e .
export AWS_REGION=ap-south-1
export AWS_PROFILE=monitoringVerify end to end (starts the server, connects as a real MCP client, calls a tool):
python test_client.py ap-south-1Client config
Claude Desktop — ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"monitoring": {
"command": "/absolute/path/to/monitoring-mcp-server/.venv/bin/python",
"args": ["-m", "monitoring_mcp_server.server"],
"env": { "AWS_PROFILE": "monitoring", "AWS_REGION": "ap-south-1" }
}
}
}VS Code — .vscode/mcp.json uses servers and needs "type": "stdio"
(see the file at the repo root).
Fully quit and reopen the client after editing. Changes to server code also require a client restart — the client launches the process at startup.
Example prompts
"List stopped EC2 instances in ap-south-1."
"Show CPU and status checks for i-0d243be7034f86ee0 over the last 6 hours."
"Which alarms are firing, and has the API latency alarm been flapping today?"
"Node and pod memory utilization on the prod EKS cluster."
"RDS connections and freeable memory for orders-db over the last day."
"Redis engine CPU, hit rate, and evictions for orders-cache-001."
Layout
monitoring_mcp_server/
aws_client.py # client factory, profile support, error translation
metrics.py # GetMetricData engine, adaptive periods, MetricSpec catalogs
models.py # Pydantic response models
ec2_tools.py # EC2 inventory + metrics + status checks
eks_tools.py # EKS clusters, node groups, Container Insights
rds_tools.py # RDS instances, clusters, metrics
redis_tools.py # ElastiCache Redis nodes, replication groups, metrics
alarms_tools.py # alarms, alarm history, generic metric access
server.py # FastMCP entry point
test_client.py # raw stdio MCP client for verificationThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA simplified MCP server that provides a streamlined way to interact with AWS CloudWatch resources (log groups, log queries, and alarms) through the MCP protocol.Last updated5
- Alicense-qualityDmaintenanceA read-only Model Context Protocol server that exposes over 60 AWS tools across services like EC2, S3, and IAM for AI agent interaction. It features multi-region support, resource caching, and audit logging to provide secure, AI-ready access to AWS infrastructure data.Last updated159ISC
- Alicense-qualityAmaintenanceA read-only MCP server for safe, structured investigation of AWS serverless resources, providing curated tools for tracing dependencies, permissions, and failures without exposing raw SDK access.Last updatedMIT
- AlicenseBqualityBmaintenanceA read-only MCP server for investigating Amazon OpenSearch Service domains using natural language, with tools for cluster health, index management, search, and diagnostics, secured by allowed profiles and regions.Last updated20MIT
Related MCP Connectors
An MCP server giving access to Grafana dashboards, data and more.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/harshsijariya/mcp-aws'
If you have feedback or need assistance with the MCP directory API, please join our Discord server