The Model Context Protocol (MCP) Status Observer is an integration that allows Claude Desktop to monitor and query the operational status of major digital platforms like GitHub, Slack, Discord, and more. It provides real-time status updates through a simple command interface.
Clone or download the repository:
git clone https://github.com/imprvhub/mcp-status-observer
cd mcp-status-observer
Install dependencies:
npm install
Build the project:
npm run build
node build/index.js
Keep this terminal window open while using Claude Desktop. The server will run until you close the terminal.
Claude Desktop can automatically start the MCP server when needed:
Edit the Claude Desktop configuration file located at:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
Add the Status Observer MCP configuration:
{
"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:
/Users/username/mcp-status-observer
C:\\Users\\username\\mcp-status-observer
If you already have other MCPs configured, simply add the "statusObserver" section inside the "mcpServers" object.
status
command to interact with the Status Observer MCP ServerThe 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 --github |
--all |
Get status for all platforms | None | status --all |
status --all
status --amplitude
status --anthropic
status --asana
status --atlassian
status --cloudflare
status --digitalocean
status --discord
status --docker
status --dropbox
status --gcp
status --gemini
status --github
status --linkedin
status --netlify
status --npm
status --openai
status --reddit
status --slack
status --twilio
status --vercel
status --x
status list
You can also interact with the MCP using natural language:
If you see the error "MCP Status Observer: Server disconnected" in Claude Desktop:
Verify the server is running:
node build/index.js
from the project directoryCheck your configuration:
claude_desktop_config.json
is correct for your system\\
) for Windows pathsIf the Status Observer tools don't appear in Claude:
To check if the server is running:
ps aux | grep node
If you don't see the server running, start it manually or use the auto-start method.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.