apistatuscheck-mcp-server
v0.1.0
Published
MCP server for API Status Check
Downloads
27
Maintainers
Readme
API Status Check MCP Server
An MCP (Model Context Protocol) server that wraps the public API Status Check endpoints.
Features
check_status— GET/api/status?api={slug}list_apis— GET/api/statuslist_categories— Derived from/api/statusresponsecheck_category— GET/api/status?category={slug}check_url— GET/api/check?url={url}
Install
npm install -g @apistatuscheck/mcp-serverOr run via npx:
npx -y @apistatuscheck/mcp-serverConfiguration
The server defaults to https://apistatuscheck.com and can be overridden with:
ASC_BASE_URL="https://apistatuscheck.com" npx -y @apistatuscheck/mcp-serverClaude Desktop setup
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"apistatuscheck": {
"command": "npx",
"args": ["-y", "@apistatuscheck/mcp-server"],
"env": {
"ASC_BASE_URL": "https://apistatuscheck.com"
}
}
}
}Local development
npm install
npm run build
node dist/index.js