Ruby gem providing status page information via MCP (Model Context Protocol) server tools. Integrates with MCP-compatible clients like Cursor IDE, Claude Desktop, and other MCP-enabled tools.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"status": {
"env": {
"RUBY_VERSION": "3.4.7"
},
"args": [
"exec",
"status_mcp"
],
"command": "gem"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Ruby gem providing status page information from awesome-status via MCP (Model Context Protocol) server tools. Integrates with MCP-compatible clients like Cursor IDE, Claude Desktop, and other MCP-enabled tools.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops
MCP server for using the GitLab API
Enhanced MCP server for GitLab: group projects listing and activity tracking
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
MCP server for Komodo - manage Docker containers, servers, stacks, and deployments via AI
MCP Security Weekly
Get CVE alerts and security updates for Status_mcp.Rb and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Ruby gem providing status page information from awesome-status via MCP (Model Context Protocol) server tools. Integrates with MCP-compatible clients like Cursor IDE, Claude Desktop, and other MCP-enabled tools.
Sponsored by Kisko Labs.
gem install status_mcp
For Cursor IDE, create or update .cursor/mcp.json in your project:
{
"mcpServers": {
"status": {
"command": "gem",
"args": ["exec", "status_mcp"],
"env": {
"RUBY_VERSION": "3.4.7"
}
}
}
}
Note: Using gem exec ensures the correct Ruby version is used.
For Claude Desktop, edit the MCP configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"status": {
"command": "gem",
"args": ["exec", "status_mcp"],
"env": {
"RUBY_VERSION": "3.4.7"
}
}
}
}
Note: After updating the configuration, restart Claude Desktop for changes to take effect.
After installation, you can start the MCP server immediately:
# With bundler
gem install status_mcp && bundle exec status_mcp
# Or if installed globally
status_mcp
The server will start and communicate via STDIN/STDOUT using the MCP protocol.
awesome-statusThe MCP server provides the following tools:
search_services - Search for services by name
query (string)get_service_details - Get detailed status links for a specific service
name (string)list_services - List all available services (limited to first 50 if too many)
limit (optional integer, default: 50)# Install dependencies
bundle install
# Run tests
bundle exec rspec
# Run tests across multiple Ruby versions
bundle exec appraisal install
bundle exec appraisal rspec
# Run linting
bundle exec standardrb --fix
Bug reports and pull requests are welcome on GitHub at https://github.com/amkisko/status_mcp.rb.
For more information, see CONTRIBUTING.md.
If you discover a security vulnerability, please report it responsibly. See SECURITY.md for details.
The gem is available as open source under the terms of the MIT License.