Install
$ agentstack add mcp-benedya-octoquery ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
OctoQuery
Turn your databases into AI-ready tools. OctoQuery is a thin MCP (Model Context Protocol) server around your databases: every database you configure becomes one MCP tool that an AI agent — Claude, your IDE assistant, or any other MCP client — can call with plain SQL. See [Supported databases](#supported-databases) for what it can connect to today.
Motivation
AI agents are great at writing SQL, but they need two things to be useful with your data:
- Access — a safe, standard way to run queries. OctoQuery provides that: each configured database is exposed as a single MCP tool (e.g.
sql_orders_prod,sql_analytics_dev) that accepts aquerystring and returns rows as JSON. Adding a database is one JSON entry — no code. - Understanding — knowledge of your schema, relations, and conventions. For that, you pair each database tool with an agent skill: a markdown file describing the tables, how they join, and what the gotchas are (money in cents, soft deletes, statuses to exclude, ...). With a skill, the agent reasons about your database efficiently instead of guessing at the schema query by query.
This repo ships working examples of both: two demo databases ([demo/](demo/docker-compose.yml) — an e-commerce PostgreSQL and a blog MySQL) with their matching skills ([ecommerce-demo-db](.agents/skills/ecommerce-demo-db/SKILL.md), [blog-demo-db](.agents/skills/blog-demo-db/SKILL.md)), wired together through [AGENTS.md](AGENTS.md). Use them as the template for your own databases.
Under the hood it's a NestJS service speaking MCP over Streamable HTTP at /mcp, protected by OAuth 2.0 (optional for local use). Connections are opened lazily on first query, so databases don't need to be reachable at startup.
Supported databases
| Database | Status | | ---------- | ------------ | | PostgreSQL | ✅ Supported | | MySQL | ✅ Supported |
More engines may be added over time — contributions are welcome.
Quick start (with the demo database)
The fastest way to see it working — two seeded demo databases run in Docker: an e-commerce PostgreSQL (users, products, orders, order items) and a blog MySQL (authors, posts, comments).
- Clone the repository:
git clone https://github.com/benedya/octoquery.git && cd octoquery
- Install dependencies:
npm install
- Start the demo databases (PostgreSQL on
127.0.0.1:45432, MySQL on127.0.0.1:43306, both seeded automatically):
docker compose -f demo/docker-compose.yml up -d
- Configure the service — set
MCP_AUTH_ENABLED=falsein.envfor a tokenless start;mcp-sql-tools.jsonalready points at both demo databases:
cp .env.example .env && cp mcp-sql-tools.example.json mcp-sql-tools.json
- Run it:
npm run start:dev
The MCP endpoint is now live at http://localhost:3000/mcp with two tools, sql_ecommerce_demo and sql_blog_demo. Connect an agent (next section) and ask things like "top customers by spend" or "which blog post got the most comments?".
To stop the demo databases and delete their data: docker compose -f demo/docker-compose.yml down -v.
Connecting AI agents
The server speaks standard MCP over Streamable HTTP, so any MCP client works — Claude Code, Claude Desktop, VS Code, JetBrains IDEs, or anything else that understands MCP. With auth disabled (local dev) no token is needed; otherwise clients go through the OAuth flow described below.
Register the MCP server in your agent's MCP configuration (the exact file or settings screen depends on the client, but the shape is always the same):
{
"mcpServers": {
"octoquery": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}
Give the agent the skills. Point your agent at the skills in .agents/skills/ — most agents pick them up through the project's [AGENTS.md](AGENTS.md), others discover a skills directory on their own. The skill is what turns a generic SQL tool into an agent that knows your schema.
Then just ask. A typical interaction looks like this: you ask "who are our top customers?" — the agent reads the database's skill to learn the tables, how they join, and which rows to exclude, writes the SQL itself, and calls the matching sql_* tool to execute it. You get the answer; the skill made sure the query was right on the first try.
Adding your own databases
Databases are defined entirely in mcp-sql-tools.json (gitignored — it holds credentials; [mcp-sql-tools.example.json](mcp-sql-tools.example.json) is the committed template):
[
{
"name": "sql_orders_prod",
"label": "prod orders",
"host": "prod-db.example.com",
"port": 5432,
"database": "orders_service",
"user": "orders_reader",
"password": "...",
"enableTLS": true
}
]
Per entry: name, host, database, user, password are required; optional are type (postgres, the default, or mysql), label (used in the tool title, defaults to the name), description (full tool-description override), port (defaults to the engine's standard port: 5432 for postgres, 3306 for mysql), enableTLS (default true), and maxRows (default MCP_MAX_ROWS, 100). Tool names are free-form, so any environment/database combination works — one entry per tool. Duplicate names, malformed JSON, or a missing file fail validation at startup. Set MCP_SQL_TOOLS_FILE to load the file from a different path (e.g. a mounted secret in Kubernetes).
To give agents real understanding of a database, add a skill next to the demo one: create .agents/skills//SKILL.md describing the schema, relations, and conventions (use [ecommerce-demo-db](.agents/skills/ecommerce-demo-db/SKILL.md) as the pattern), and list it in [AGENTS.md](AGENTS.md).
Authentication
The service is an OAuth 2.0 resource server per the MCP authorization spec. It works with any OIDC provider (Auth0, Okta, ...) — configured via AUTH_ISSUER and AUTH_AUDIENCE:
- Unauthenticated requests to
/mcpget401with aWWW-Authenticate: Bearer resource_metadata="..."header. - The client fetches the RFC 9728 metadata (
GET /.well-known/oauth-protected-resource), which points at the provider (authorization_servers: [AUTH_ISSUER]). - The client obtains an access token from the provider (authorization code + PKCE for interactive clients, client credentials for machine-to-machine).
- The service validates the JWT against the provider's JWKS: signature (RS256),
iss,exp, and — ifAUTH_AUDIENCEis set —aud.
For local development set MCP_AUTH_ENABLED=false — all auth env vars become optional.
Tests
Integration tests run with Jest and Testcontainers — each suite starts a disposable PostgreSQL or MySQL container, so Docker must be running:
npm test
There is one full-stack suite per supported database (npm run test:postgres, npm run test:mysql): each boots the application against a real database container and drives the MCP endpoint over Streamable HTTP like a real client — covering tool discovery, query execution, read-only enforcement, multi-statement rejection, and row truncation.
Testing with MCP Inspector
The MCP Inspector is a web UI for exercising an MCP server by hand — the quickest way to verify your setup before involving an agent:
npx @modelcontextprotocol/inspector
In the Inspector: select transport Streamable HTTP, set the URL to http://localhost:3000/mcp, and connect (with auth enabled, paste a bearer token in the Authentication field; with MCP_AUTH_ENABLED=false just connect). Under Tools you'll see one tool per configured database — run sql_ecommerce_demo with a query like SELECT count(*) FROM orders and inspect the JSON rows that an agent would receive. Results are truncated to the tool's maxRows.
Operational notes
- Sessions are in-memory (map of
mcp-session-id→ transport). When running more than one replica, use sticky sessions at the ingress. BASE_URLmust be the public URL clients see (behind a proxy this differs fromlocalhost:); it is used in the resource metadata andWWW-Authenticatechallenges.- Read-only by default. With
MCP_READ_ONLY=true(the default) every query runs as a single statement inside aREAD ONLYtransaction, so the database itself rejects writes and DDL. On MySQL — where DDL escapes read-only transactions via implicit commit — statements are additionally restricted to a read allowlist (SELECT,WITH,SHOW,DESCRIBE,EXPLAIN). SetMCP_READ_ONLY=falseto allow data modification. - With read-only mode disabled the SQL tools execute arbitrary SQL — the caller is fully trusted. Access control is entirely provider-side, so a token grant should be treated as a database access grant. Read-only database users are still the strongest guarantee.
License
[MIT](LICENSE)
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: benedya
- Source: benedya/octoquery
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.