CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Xitoring

xitoring/mcp-server
authHTTPregistry active
Summary

A hosted HTTP endpoint that pipes your Xitoring monitoring data straight into Claude or Cursor. No local install needed. You get 60+ tools covering server metrics (CPU, memory, disk, processes), uptime checks (HTTP, TCP, DNS, ICMP), SSL expiry, incident timelines, status pages, and maintenance windows. You can read live stats, search incidents, pull historical reports, and write back to resolve incidents, pause checks, or schedule maintenance. Authenticate with a Xitoring API key in the Authorization header and you're done. Reach for this when you're triaging outages in chat, drafting post-mortems from incident logs, or asking which servers are pegged at 90% CPU without opening the dashboard.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Xitoring MCP Server

MCP Compatible License: MIT Status: Beta

Connect AI assistants like Claude, Cursor, and ChatGPT to your Xitoring monitoring data.

The Xitoring MCP server is a hosted, remote HTTP server - there is nothing to install or run locally. Point your MCP-compatible client at https://app.xitoring.com/mcp with your Xitoring API key and you're done.

What is Xitoring?

Xitoring is an all-in-one monitoring platform: uptime checks (HTTP, TCP, DNS, ICMP), server monitoring via the Xitogent agent (CPU, memory, disk, network, processes), SSL expiry, heartbeat checks, incident management, status pages, and notification routing. Teams use it to detect outages, triage performance regressions, track SLAs, and run on-call.

What the MCP Server Can Do

The server exposes 60+ tools across these areas:

Servers & Metrics

Inspect servers and Xitogent agents, fetch live and historical CPU / memory / disk / network metrics, list top processes, and pull system info.

Uptime, SSL & Heartbeat

List and inspect every check type (HTTP, HTTPS, TCP, DNS, ICMP, SSL, heartbeat). Get response time, latency, regional reachability, and uptime percentages.

Incidents & Alerting

Search and filter incidents, read incident timelines and notes, inspect triggers and notification routing, and follow incident state changes.

Status Pages & Maintenance

View status pages and the components they expose, list current and upcoming maintenance windows.

Reports & Account

Pull uptime and SSL reports, inspect subscription and quota usage, list and read support tickets.

Audit Logs

Account-level audit logs, Xitogent connection / installation logs, and notification delivery history.

Write Actions

Resolve incidents, add notes, pause / unpause checks, create new checks, schedule maintenance, send test notifications, invite contacts, and open support tickets.

Prerequisites

  • A Xitoring account (free tier works for trying it out)
  • A Xitoring API key - generate one at Dashboard > Account > API Access > Generate Key. Docs: xitoring.com/docs/account/api
  • An MCP-compatible client (Claude Code, Claude Desktop, Cursor, VS Code with Copilot, etc.)

Setup

Pick the section that matches your client. In every example, replace YOUR_API_KEY with the key you generated above.

Claude Code CLI (fastest)

claude mcp add --transport http --scope user xitoring \
  https://app.xitoring.com/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"

Claude Desktop

Edit your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "xitoring": {
      "type": "http",
      "url": "https://app.xitoring.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Restart Claude Desktop after saving.

Cursor

Settings > MCP > Add new MCP server, then paste:

{
  "mcpServers": {
    "xitoring": {
      "url": "https://app.xitoring.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

VS Code (GitHub Copilot)

Create .vscode/mcp.json in your workspace:

{
  "servers": {
    "xitoring": {
      "type": "http",
      "url": "https://app.xitoring.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Stdio-only clients (via mcp-remote bridge)

If your client only supports stdio transport, bridge through mcp-remote:

{
  "mcpServers": {
    "xitoring": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://app.xitoring.com/mcp",
        "--header",
        "Authorization: Bearer YOUR_API_KEY"
      ]
    }
  }
}

Verifying the Connection

  1. Restart your MCP client.
  2. Open the tool / server picker - you should see xitoring listed with its tools.
  3. Try the prompt: "List my Xitoring servers and their current status."

If you get a response that names your real servers, you're connected.

Example Prompts

Status & Triage

  • "What incidents are ongoing right now, and which servers or checks are affected?"
  • "Show me the current status of all my servers - flag anything that isn't reporting."
  • "Are there any maintenance windows active or starting in the next 24 hours?"

Performance & Capacity

  • "Which 5 servers have the highest CPU usage right now?"
  • "Show me the top processes by memory on web-prod-01."
  • "Rank my servers by disk usage and tell me which ones are above 80% full."

Uptime & SLA

  • "What's the overall uptime for my checks over the last 30 days?"
  • "Which SSL certificates are expiring in the next 30 days?"
  • "Pull the uptime report for api.example.com for last month."

Incident Response

  • "Summarize the last 3 resolved incidents on db-01 and read me their notes."
  • "Draft a post-mortem from the timeline of incident #1234."
  • "Add a note to the active incident: 'rolling back deploy v2.41, monitoring recovery.'"

Maintenance & Ops

  • "Create a 2-hour maintenance schedule for web-prod-01 starting tomorrow at 02:00 UTC."
  • "Pause the uptime check for staging.example.com while we redeploy."
  • "Create an HTTP check for https://api.example.com/health that runs every minute from EU regions."

Security & Privacy

  • All traffic to https://app.xitoring.com/mcp is encrypted over HTTPS.
  • Authentication is a Xitoring API key passed as Authorization: Bearer .... Revoking the key in the Xitoring dashboard immediately cuts off MCP access.
  • Rotate keys every 90 days for production accounts, and immediately if a key is exposed.
  • Be aware: AI clients send conversation context (including tool results) to their model providers. Only data you explicitly request via MCP tools is read from Xitoring, but those results then become part of the conversation the model provider sees.

Troubleshooting

SymptomWhat to check
401 UnauthorizedThe API key is wrong, revoked, or the header is malformed. The header must be exactly Authorization: Bearer YOUR_API_KEY - no extra quotes, no typos.
MCP server doesn't appear in the clientFully restart the client. Validate JSON syntax (a missing comma will silently disable the entry).
429 Too Many RequestsMCP shares Xitoring's REST API rate limits. Slow down the prompts or upgrade your plan.
Empty results from a toolCheck the API key's scope and whether you're in the right sub-account context. Some tools only return data the key has access to.
Tool call hangsCheck Xitoring's status page, then retry. If reproducible, file an issue with the tool name and timestamp.

Links

  • Full documentation: xitoring.com/docs/mcp
  • Generate an API key: xitoring.com/docs/account/api
  • Model Context Protocol: modelcontextprotocol.io

Status

The Xitoring MCP server is currently in beta. Tool names and response shapes may change before 1.0. Feedback and bug reports via GitHub issues are very welcome.

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Monitoring & Observability
Registryactive
TransportHTTP
AuthRequired
UpdatedMay 16, 2026
View on GitHub

Related Monitoring & Observability MCP Servers

View all →
Mcp Observability

io.github.infoinlet-marketplace/mcp-observability

Observability for incident agents — query Loki (LogQL), Prometheus (PromQL), Elasticsearch.
Monitor

betterdb-inc/monitor

BetterDB MCP server - Valkey observability for Claude Code and other MCP clients
1.1k
Datadog

com.mcparmory/datadog

Monitor infrastructure, manage agents and deployments, track metrics, logs, and events
25
Observability Mcp

thotischner/observability-mcp

Unified observability gateway for AI agents — Prometheus, Loki & more, with anomaly detection.
5
Datadog Mcp

io.github.tantiope/datadog-mcp

Full Datadog API access: monitors, logs, metrics, traces, dashboards, and observability tools
4
Datadog

io.github.us-all/datadog

Datadog MCP — 165 tools for metrics, monitors, logs, APM, RUM, incidents, CI/CD, fleet
1