@pooml/mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@pooml/mcpShow me error logs from the last hour grouped by service."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pooml/mcp
MCP server for pooml: query your logs and metrics with plain SQL from Claude, or any other MCP client.
Runs on your machine (stdio), talks to your pooml instance over its read-only query API. Your credentials stay local; the pooml server needs nothing MCP-specific.
Tools
query_logs- SQL over the logs (levels, services, full-text search via FTS5)query_metrics- SQL over the metrics (counters and gauges)list_metrics- what metrics exist, so the model doesn't guess names
Strictly read-only: every query goes through pooml's layered SQL validation (SELECT-only, allow-listed tables, read-only connection, timeouts, row caps).
Setup
On the pooml server, enable the query API:
POOML_QUERY_API_ENABLED=trueandPOOML_QUERY_AUTH_SECRET=<min 32 chars>.Add to your MCP client. For Claude Code:
claude mcp add pooml \
-e POOML_URL=https://your-pooml-host:8080 \
-e POOML_QUERY_AUTH_SECRET=your-query-secret \
-- npx -y @pooml/mcpOr in .mcp.json:
{
"mcpServers": {
"pooml": {
"command": "npx",
"args": ["-y", "@pooml/mcp"],
"env": {
"POOML_URL": "https://your-pooml-host:8080",
"POOML_QUERY_AUTH_SECRET": "your-query-secret"
}
}
}
}If pooml sits behind a Cloudflare Tunnel with Access, add the service token:
POOML_CF_ACCESS_CLIENT_ID and POOML_CF_ACCESS_CLIENT_SECRET.
Why SQL
pooml's whole pitch is that your observability data is SQLite queried with
SQL - and LLMs already speak SQL fluently. No custom query language for the
model to hallucinate around: it writes SELECT service, COUNT(*) FROM logs WHERE level >= 4 ... and gets answers.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
A paid remote MCP for AI SDK data query MCP, built to return verdicts, receipts, usage logs, and aud
Read-only Yandex Metrika MCP. Query visits, sources, geo, devices and more in plain language.
Query metrics, targets, entities, and team data in your Steep workspace via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/n0rdy/pooml-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server