An MCP server for Scout Monitoring data interactions.
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
uvx scout-mcp-local
MCP client config
{
"mcpServers": {
"scout-mcp-local": {
"command": "uvx",
"args": [
"scout-mcp-local"
]
}
}
}Run
docker run -i --rm docker.io/scoutapp/scout-mcp-local:latest
MCP client config
{
"mcpServers": {
"scout-mcp-local": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/scoutapp/scout-mcp-local:latest"
]
}
}
}