Connecting AI to Statly
Statly provides a hosted MCP (Model Context Protocol) server that enables AI assistants to interact with your infrastructure.
What is MCP?
Model Context Protocol is an open standard for connecting AI assistants to external data sources and tools. With MCP, you can:
- Ask questions about your infrastructure in natural language
- Manage incidents by telling your AI assistant
- Query uptime data and get intelligent summaries
- Get documentation help while coding
Quick Setup
Server URL
https://mcp.statly.live/mcp
Claude Desktop Configuration
Edit your config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"statly": {
"url": "https://mcp.statly.live/mcp",
"transport": "streamable-http"
}
}
}
With API Key (for your organization's data)
{
"mcpServers": {
"statly": {
"url": "https://mcp.statly.live/mcp",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer sk_live_your_api_key"
}
}
}
}
Test Your Connection
After configuring, ask your AI:
- "Search Statly docs for Express integration"
- "List my monitors and their current status"
- "Create an incident for the API outage"
Learn More
Visit docs.statly.live/mcp for the complete documentation.