SkillAgentSearch skills...

MCP Status Observer

Model Context Protocol server for monitoring Operational Status of major digital platforms in Claude Desktop.

Install / Use

/learn @imprvhub/MCP Status Observer

README

MCP Status Observer

Verified on MseeP Trust Score smithery badge

<table style="border-collapse: collapse; width: 100%; table-layout: fixed;"> <tr> <td style="padding: 15px; vertical-align: middle; border: none; text-align: center;"> <a href="https://mseep.ai/app/imprvhub-mcp-status-observer"> <img src="https://mseep.net/pr/imprvhub-mcp-status-observer-badge.png" alt="MseeP.ai Security Assessment Badge" /> </a> </td> <td style="width: 40%; padding: 15px; vertical-align: middle; border: none;">An integration that allows Claude Desktop to monitor and query the operational status of major digital platforms including AI providers, cloud services, and developer tools using the Model Context Protocol (MCP).</td> <td style="width: 60%; padding: 0; vertical-align: middle; border: none; min-width: 300px; text-align: center;"> <a href="https://glama.ai/mcp/servers/@imprvhub/mcp-status-observer"> <img style="max-width: 100%; height: auto; min-width: 300px;" src="https://glama.ai/mcp/servers/@imprvhub/mcp-status-observer/badge" alt="Status Observer MCP server" /> </a> </td> </tr> </table>

[!IMPORTANT] This project is continuously updated with new platform integrations. If you're not seeing a service that should be available, or if Claude doesn't recognize a platform, please update by running npm run build from a freshly cloned repository.

Last updated: 2025-09-12T07:22:15Z (UTC) - Added OpenRouter status integration with RSS incident tracking

Features

  • Monitor world's most used digital platforms (GitHub, Slack, Discord, etc.)
  • Track AI providers including OpenRouter, OpenAI, Anthropic, and Gemini
  • Get detailed status information for specific services with incident history
  • Check status of specific components within each platform
  • Real-time updates of service status with impact analysis
  • Comprehensive incident tracking with resolution status and timelines
  • Simple query interface with commands like status --openrouter

Demo

<p> <a href="https://www.youtube.com/watch?v=EV1ac0PMzKg"> <img src="public/assets/preview.png" width="600" alt="Status Observer MCP Demo"> </a> </p> <details> <summary> Timestamps </summary>

Click on any timestamp to jump to that section of the video

00:00 - LinkedIn Platform Status Assessment
Comprehensive analysis of LinkedIn's operational health, including detailed examination of core services such as LinkedIn.com, LinkedIn Learning, Campaign Manager, Sales Navigator, Recruiter, and Talent solutions. All systems confirmed fully operational with zero service disruptions.

00:20 - GitHub Infrastructure Status Overview
Detailed evaluation of GitHub's service availability, covering critical components including Git operations, API requests, Actions, Webhooks, Issues, Pull Requests, Packages, Pages, Codespaces, and Copilot functionality. Complete operational status confirmed across all GitHub services.

00:40 - Vercel Platform Reliability Analysis
In-depth examination of Vercel's global edge network and deployment infrastructure, featuring comprehensive status reporting on core services such as API, Dashboard, Builds, Serverless Functions, Edge Functions, and global CDN locations. All Vercel services verified operational across all regions.

01:08 - Cloudflare Network Status Examination
Extensive analysis of Cloudflare's global infrastructure status, detailing service availability across geographic regions and specific service components. Identified performance degradation in multiple regions (Africa, Asia, Europe, Latin America, Middle East, North America) while core services remain functional. Includes detailed assessment of regional data centers under maintenance and technical impact analysis.

01:46 - Global Operational Status Report
Consolidated overview of operational status across all major technology platforms and service providers, highlighting both fully operational services (GitHub, Vercel, Netlify, Asana, Atlassian, OpenRouter, etc.) and services experiencing degraded performance (Cloudflare, Twilio). Includes strategic recommendations for organizations with dependencies on affected services.

</details>

Requirements

  • Node.js 16 or higher
  • Claude Desktop
  • Internet connection to access status APIs

Installation

Installing Manually

  1. Clone or download this repository:
git clone https://github.com/imprvhub/mcp-status-observer
cd mcp-status-observer
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Running the MCP Server

There are two ways to run the MCP server:

Option 1: Running manually

  1. Open a terminal or command prompt
  2. Navigate to the project directory
  3. Run the server directly:
node build/index.js

Keep this terminal window open while using Claude Desktop. The server will run until you close the terminal.

Option 2: Auto-starting with Claude Desktop (recommended for regular use)

The Claude Desktop can automatically start the MCP server when needed. To set this up:

Configuration

The Claude Desktop configuration file is located at:

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

Edit this file to add the Status Observer MCP configuration. If the file doesn't exist, create it:

{
  "mcpServers": {
    "statusObserver": {
      "command": "node",
      "args": ["ABSOLUTE_PATH_TO_DIRECTORY/mcp-status-observer/build/index.js"]
    }
  }
}

Important: Replace ABSOLUTE_PATH_TO_DIRECTORY with the complete absolute path where you installed the MCP

  • macOS/Linux example: /Users/username/mcp-status-observer
  • Windows example: C:\\Users\\username\\mcp-status-observer

If you already have other MCPs configured, simply add the "statusObserver" section inside the "mcpServers" object. Here's an example of a configuration with multiple MCPs:

{
  "mcpServers": {
    "otherMcp1": {
      "command": "...",
      "args": ["..."]
    },
    "otherMcp2": {
      "command": "...",
      "args": ["..."]
    },
    "statusObserver": {
      "command": "node",
      "args": [
        "ABSOLUTE_PATH_TO_DIRECTORY/mcp-status-observer/build/index.js"
      ]
    }
  }
}

The MCP server will automatically start when Claude Desktop needs it, based on the configuration in your claude_desktop_config.json file.

Usage

  1. Restart Claude Desktop after modifying the configuration
  2. In Claude, use the status command to interact with the Status Observer MCP Server
  3. The MCP server runs as a subprocess managed by Claude Desktop

Available Commands

The Status Observer MCP provides a single tool named status with several commands:

| Command | Description | Parameters | Example | |---------|-------------|------------|---------| | list | List all available platforms | None | status list | | --[platform] | Get status for a specific platform | Platform name | status --openrouter | | --all | Get status for all platforms | None | status --all |

Supported Platforms

The Status Observer monitors 22 major digital platforms across various categories:

AI & Machine Learning (4)

  • OpenRouter - AI model routing and access platform
  • OpenAI - Leading AI services provider (ChatGPT, DALL-E, API)
  • Anthropic - AI assistant provider (Claude)
  • Gemini - Google's multimodal AI platform

Cloud Infrastructure (4)

  • Google Cloud Platform - Comprehensive cloud computing services
  • DigitalOcean - Developer-focused cloud infrastructure
  • Vercel - Frontend deployment and edge platform
  • Netlify - Web development and deployment platform

Developer Tools & Platforms (5)

  • Docker - Container platform and services
  • GitHub - Version control and collaboration platform
  • npm - JavaScript package manager and registry
  • Atlassian - Developer collaboration tools (Jira, Bitbucket, Confluence)
  • Supabase - Open source backend platform (PostgreSQL, auth, storage)

Productivity & Collaboration (5)

  • LinkedIn - Professional networking platform
  • Slack - Business communication and collaboration
  • Asana - Team workflow and project management
  • Dropbox - Cloud file storage and collaboration
  • X (Twitter) - Social media and real-time communication

Web Infrastructure & Security (3)

  • Cloudflare - Web infrastructure, CDN, and security
  • Discord - Developer community and communication platform
  • Reddit - Social news and developer community platform

Analytics & Business Tools (1)

  • Amplitude - Product analytics platform

Example Usage

Here are various examples of how to use the Status Observer with Claude:

Direct Commands:

# AI Platforms
status --openrouter
status --openai
status --anthropic
status --gemini

# Cloud Infrastructure
status --gcp
status --vercel
status --digitalocean
status --netlify

# Developer Tools
status --docker
status --github
status --atlassian
status --supabase
status --npm

# Productivity & Social
status --linkedin
status --slack
status --x
status --dropbox

# Web Infrastructure
status --cloudflare
status --discord

# All platforms
status --all
status list

View on GitHub
GitHub Stars7
CategoryDevelopment
Updated1d ago
Forks8

Languages

TypeScript

Security Score

90/100

Audited on Mar 29, 2026

No findings