agent-store
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., "@agent-storelist services with error counts in the last 24h"
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.
agent-store
Minimal agent telemetry store. One process, two paths:
OTLP/HTTP (JSON encoding) → ingest spans/logs/metrics → Postgres
MCP streamable-http → query Postgres → agent introspection tools
Quick start
# Local dev
PGHOST=localhost PGPORT=5432 PGUSER=postgres PGPASSWORD=secret PGDATABASE=agentstore \
bun run src/server.tsRelated MCP server: openobserve-community-mcp
Testing
# Unit tests only (no DB)
bun test test/otlp-parse.test.ts
# Full integration tests (spins up docker postgres)
bash scripts/test-db.sh
# Or if PG is already running:
PGHOST=localhost PGPORT=5432 PGUSER=postgres PGPASSWORD=secret PGDATABASE=agentstore_test \
bun testEnv vars
Var | Default | Description |
|
| HTTP listen port |
|
| MCP endpoint path |
| — | Full postgres URL (overrides PGHOST etc.) |
|
| Postgres host |
|
| Postgres port |
|
| Postgres user |
|
| Postgres password |
|
| Postgres database |
|
| Directory for ingest audit JSONL files |
Routes
Method | Path | Description |
|
| OTLP/JSON trace ingest |
|
| OTLP/JSON log ingest |
|
| OTLP/JSON metric ingest |
|
| Health check (includes PG ping) |
|
| MCP streamable-http |
Schema (telemetry schema, auto-migrated on startup)
telemetry.spans— OTLP trace spans with resource/scope/attributes as JSONBtelemetry.logs— OTLP log recordstelemetry.metrics— OTLP metric datapoints (gauge/sum/histogram decomposed)
MCP tools
Tool | Description |
| Filter logs by service, body, severity, time range |
| Trace summaries (root span, count, duration, error flag) |
| All spans for a trace_id, parent-child reconstructable |
| Pre-aggregated per-service stats: spans, errors, top names, daily |
| All services with span/log counts and last_seen |
| Distinct span names + attribute keys for a service |
since param accepts relative ("7d", "24h", "30m") or ISO datetime.
Docker
docker build -t agent-store .
docker run -e PGHOST=... -e PGPASSWORD=... -p 4318:4318 agent-storeThis 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.
Latest Blog Posts
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/zyx1121/agent-store'
If you have feedback or need assistance with the MCP directory API, please join our Discord server