AI

MCP Server

The Status200 Model Context Protocol (MCP) Server provides LLMs with direct access to your Status200 instance, enabling AI-powered monitoring, incident management, and observability operations.

What is the Status200 MCP Server?

The Status200 MCP Server is a bridge between Large Language Models (LLMs) and your Status200 instance. It implements the Model Context Protocol (MCP), allowing AI assistants like Claude to interact directly with your monitoring infrastructure.

How It Works

The MCP server is hosted alongside your Status200 instance and accessible via the Streamable HTTP transport. No local installation is required.

Cloud Users: https://status200.ru/mcp Self-Hosted Users: https://your-status200-domain.com/mcp

Key Features

  • Complete API Coverage: Access to 711 Status200 API endpoints
  • 126 Resource Types: Manage all Status200 resources including monitors, incidents, teams, probes, and more
  • Real-time Operations: Create, read, update, and delete resources in real-time
  • Type-safe Interface: Fully typed with comprehensive input validation
  • Secure Authentication: API key-based authentication with proper error handling
  • Easy Integration: Works with Claude Desktop and other MCP-compatible clients
  • Session Management: Built-in session handling with automatic reconnection support

What You Can Do

With the Status200 MCP Server, AI assistants can help you:

  • Monitor Management: Create and configure monitors, check their status, and manage monitor groups
  • Incident Response: Create incidents, add notes, assign team members, and track resolution
  • Team Operations: Manage teams, permissions, and on-call schedules
  • Status Pages: Update status pages, create announcements, and manage subscribers
  • Alerting: Configure alert rules, manage escalation policies, and check notification logs
  • Probes: Deploy and manage monitoring probes across different locations
  • Reports & Analytics: Generate reports and analyze monitoring data

Requirements

  • Status200 instance (cloud or self-hosted)
  • MCP-compatible client (Claude Desktop, VS Code with GitHub Copilot, etc.)
  • Valid Status200 API key (only required for authenticated operations - public tools work without it)

Getting Your API Key

  1. Log in to your Status200 instance
  2. Navigate to SettingsAPI Keys
  3. Click Create API Key
  4. Provide a name (e.g., "MCP Server")
  5. Select the appropriate permissions for your use case
  6. Copy the generated API key

Configuration

Claude Desktop Configuration

Find your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json Linux: ~/.config/Claude/claude_desktop_config.json

For Status200 Cloud

Add the following configuration:

{
  "mcpServers": {
    "status200": {
      "transport": "streamable-http",
      "url": "https://status200.ru/mcp",
      "headers": {
        "x-api-key": "your-api-key-here"
      }
    }
  }
}

For Self-Hosted Status200

Replace status200.ru with your Status200 domain:

{
  "mcpServers": {
    "status200": {
      "transport": "streamable-http",
      "url": "https://your-status200-domain.com/mcp",
      "headers": {
        "x-api-key": "your-api-key-here"
      }
    }
  }
}

Public Access (No API Key)

To use only public tools (status page information, help), you can connect without an API key:

{
  "mcpServers": {
    "status200": {
      "transport": "streamable-http",
      "url": "https://status200.ru/mcp"
    }
  }
}

This configuration allows access to public status page tools and help resources without requiring authentication.

VS Code with GitHub Copilot

VS Code supports MCP servers natively with GitHub Copilot (version 1.99+). This allows Copilot to access Status200 data directly.

Step 1: Requirements

  • VS Code version 1.99 or later
  • GitHub Copilot extension installed and activated
  • GitHub Copilot Chat enabled

Step 2: Open MCP Configuration

  1. Press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (macOS)
  2. Type "MCP: Open User Configuration" and press Enter
  3. This opens or creates the mcp.json configuration file

Alternatively, create .vscode/mcp.json in your workspace for project-specific configuration.

For Status200 Cloud

{
  "servers": {
    "status200": {
      "type": "http",
      "url": "https://status200.ru/mcp",
      "headers": {
        "x-api-key": "${input:status200-api-key}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "status200-api-key",
      "description": "Status200 API Key",
      "password": true
    }
  ]
}

For Self-Hosted Status200

{
  "servers": {
    "status200": {
      "type": "http",
      "url": "https://your-status200-domain.com/mcp",
      "headers": {
        "x-api-key": "${input:status200-api-key}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "status200-api-key",
      "description": "Status200 API Key",
      "password": true
    }
  ]
}

Step 3: Start the MCP Server

  1. Press Ctrl+Shift+P / Cmd+Shift+P
  2. Type "MCP: List Servers" to see available servers
  3. Click on "status200" to start the server
  4. When prompted, enter your Status200 API key

Step 4: Use with Copilot Chat

Open GitHub Copilot Chat and use Agent mode (@workspace or ask directly):

"What monitors do I have in Status200?"
"Show me recent incidents"
"Create a new monitor for https://example.com"

Security Note

The configuration above uses input variables with "password": true to securely prompt for your API key rather than storing it in plain text. VS Code will prompt you to confirm trust when starting the MCP server for the first time.

Available Endpoints

EndpointMethodDescription
/mcpGETServer-sent events stream for server-to-client notifications
/mcpPOSTJSON-RPC requests for tool calls and other operations
/mcpDELETESession cleanup and termination
/mcp/healthGETHealth check endpoint
/mcp/toolsGETREST API to list available tools

Authentication

The MCP server supports two modes of operation:

Public Tools (No Authentication Required)

You can connect to the MCP server without an API key to access public tools:

  • status200_help: Get help and guidance about Status200 MCP capabilities
  • status200_list_resources: List available resources and their operations
  • get_public_status_page_overview: Get overview of a public status page
  • get_public_status_page_incidents: Get incidents from a public status page
  • get_public_status_page_scheduled_maintenance: Get scheduled maintenance events
  • get_public_status_page_announcements: Get announcements from a public status page

Public status page tools accept either a status page ID (UUID) or the status page domain name.

Authenticated Tools (API Key Required)

For all other operations (managing monitors, incidents, teams, etc.), authentication is required via one of the following headers:

  • x-api-key: Your Status200 API key
  • Authorization: Bearer token with your API key (e.g., Bearer your-api-key-here)

Verification

Verify the MCP server is running:

# For Status200 Cloud
curl https://status200.ru/mcp/health

# For Self-Hosted
curl https://your-status200-domain.com/mcp/health

List available tools:

# For Status200 Cloud
curl https://status200.ru/mcp/tools

# For Self-Hosted
curl https://your-status200-domain.com/mcp/tools

Usage Examples

Basic Information Queries

"What's the current status of all my monitors?"
"Show me incidents from the last 24 hours"

Monitor Management

"Create a new website monitor for https://example.com that checks every 5 minutes"
"Set up an API monitor for https://api.example.com/health with a 30-second timeout"
"Change the monitoring interval for my website monitor to every 2 minutes"
"Disable the monitor for staging.example.com while we're doing maintenance"

Incident Management

"Create a high-priority incident for the database outage affecting user authentication"
"Add a note to incident #123 saying 'Database connection restored, monitoring for stability'"
"Mark incident #456 as resolved"
"Assign the current payment gateway incident to the infrastructure team"

Team and On-Call

"Who are the members of the infrastructure team?"
"Who's currently on call for the infrastructure team?"
"Show me the on-call schedule for this week"

Status Page Management

"Update our status page to show 'Investigating Payment Issues' for the payment service"
"Create a status page announcement about scheduled maintenance this weekend"

Public Status Page Queries (No API Key Required)

These queries work without authentication, using only the public status page tools:

"What's the current status of status.example.com?"
"Show me recent incidents from the Status200 status page"
"Are there any scheduled maintenance events on status.acme.com?"
"Get the latest announcements from my public status page with ID abc123-..."

Advanced Operations

"Create a scheduled maintenance window for Saturday 2-4 AM, disable all monitors for api.example.com during that time, and update the status page"
"Show me all monitors that have been down in the last hour, create incidents for any that don't already have one"

API Key Permissions

Read-Only Access

For viewing data only, add read permissions for your API key.

Full Access

For full access to create, update, and delete resources, ensure your API key has Project Admin permissions.

Best Practices

  • Use Specific Permissions: Only grant the minimum permissions needed
  • Rotate API Keys: Regularly rotate your API keys
  • Monitor Usage: Keep track of API key usage in Status200
  • Separate Keys: Use different API keys for different environments

Troubleshooting

Permission Errors

Ensure your API key has the necessary permissions:

  • Read access for listing resources
  • Write access for creating/updating resources
  • Delete access if you want to remove resources

Connection Issues

  1. Verify your Status200 URL is correct
  2. Check that your API key is valid
  3. Ensure your Status200 instance is accessible
  4. Test the health endpoint

Invalid API Key

  • Verify the API key in your Status200 settings
  • Check for extra spaces or characters
  • Ensure the key hasn't expired

Session Errors

If you receive session-related errors:

  • The MCP server uses the mcp-session-id header to track sessions
  • Ensure your client properly handles the session ID returned by the server
  • Sessions are automatically cleaned up when connections close

Available Resources

The MCP server provides access to 126 resource types including:

Monitoring: Monitor, MonitorStatus, MonitorGroup, Probe Incidents: Incident, IncidentState, IncidentNote, IncidentTemplate Alerts: Alert, AlertState, AlertSeverity Status Pages: StatusPage, StatusPageAnnouncement, StatusPageSubscriber On-Call: On-CallPolicy, EscalationRule, On-CallSchedule Teams: Team, TeamMember, TeamPermission Telemetry: TelemetryService, Log, Span, Metric Workflows: Workflow, WorkflowVariable, WorkflowLog

Each resource supports standard operations: List, Count, Get, Create, Update, and Delete.