octoquery
Let AI agents query your databases safely: each DB becomes an MCP tool, each schema a skill.
Install / Use
claude mcp add benedya -- npx -y github:benedya/octoqueryIf the server publishes to npm under a different name, use that package instead — check the repo README.
MCP Server
Model Context Protocol server
Quality Score
Category
Data & AnalyticsSupported Platforms
Skill content
View source on GitHubOctoQuery
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 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: four demo databases (demo/ — one per supported engine) with their matching skills (ecommerce-demo-db, blog-demo-db, library-demo-db, helpdesk-demo-db), wired together through 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.
Use with care
[!WARNING] OctoQuery gives an AI agent a live connection to your database. We've done our best to make that safe — queries run read-only by default (single statement, inside a
READ ONLYtransaction) — but no safeguard replaces your own caution:
- Use a read-only database user. This is the only guarantee that doesn't depend on OctoQuery's own logic. The service's read-only mode is a second line of defense, not the first.
- Point it at the least data you can. Prefer a replica, a restricted schema, or a scrubbed copy over your production primary. Grant the user access only to the tables the agent actually needs.
- The agent sees whatever it queries. Any data it can read — including personal data, secrets stored in tables, and internal business data — can end up in the model's context and in the transcript of your MCP client.
MCP_READ_ONLY=falseremoves the protection entirely. With it disabled, the tools execute arbitrary SQL, includingUPDATE,DELETE, and DDL. Only do this against databases you're prepared to have modified.- A token is a database grant. With auth enabled, anyone holding a valid access token can query every configured database. Treat those tokens like database credentials.
Review the queries your agent runs, start against the demo databases below, and roll out to real data only once you're comfortable with what it does.
Supported databases
| Database | Status | | --------------------- | ------------ | | PostgreSQL | ✅ Supported | | MySQL | ✅ Supported | | MariaDB | ✅ Supported | | SQL Server (MSSQL) | ✅ Supported |
More engines may be added over time — contributions are welcome.
Quick start
From clone to asking your data questions in three steps: run the server (backed by seeded demo databases), connect your AI agent, and try the demo prompts.
Step 1 — Run the server with the demo databases
Four seeded demo databases run in Docker — one per supported engine: an e-commerce PostgreSQL (users, products, orders, order items), a blog MySQL (authors, posts, comments), a library MariaDB (books, members, loans), and a helpdesk SQL Server (customers, agents, tickets).
- 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, MariaDB on127.0.0.1:43307, SQL Server on127.0.0.1:41433, all 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 all 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 four tools: sql_ecommerce_demo, sql_blog_demo, sql_library_demo, and sql_helpdesk_demo.
Step 2 — Connect your AI agent
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, others discover a skills directory on their own. The skill is what turns a generic SQL tool into an agent that knows your schema.
Step 3 — Try the demo
Everything here works out of the box with this repository's stock configuration: the three seeded databases from step 1 and the tool entries shipped in mcp-sql-tools.example.json. Try these prompts — the agent picks the right tool and skill on its own:
| Example prompt | Tool (database) | Skill |
| ---------------------------------------------------- | --------------------------------- | ---------------------------------------------------------------- |
| "Who are our top 5 customers by total spend?" | sql_ecommerce_demo (PostgreSQL) | ecommerce-demo-db |
| "Which blog post got the most comments?" | sql_blog_demo (MySQL) | blog-demo-db |
| "Who has overdue library books, and which titles?" | sql_library_demo (MariaDB) | library-demo-db |
| "Which urgent tickets are still unassigned?" | sql_helpdesk_demo (SQL Server) | helpdesk-demo-db |
Adding your own databases
Databases are defined entirely in mcp-sql-tools.json (gitignored — it holds credentials; 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
}
]
Each entry becomes one MCP tool and accepts the following fields:
| Field | Required | Default | Description |
| ------------- | -------- | ------------------------------------------ | ------------------------------------------------------------------------ |
| name | yes | — | Tool name shown to the agent (letters, digits, _, -; max 64 chars) |
| host | yes | — | Database host |
| database | yes | — | Database name |
| user | yes | — | Database user (prefer a read-only one) |
| password | yes | — | Database password |
| type | no | postgres | Engine: postgres, mysql, mariadb, or mssql |
| port | no | engine standard (5432 postgres, 3306 mysql/mariadb, 1433 mssql) | Database port |
| label | no | the name value | Human-friendly name used in the tool title and description |
| description | no | generated from label | Full override of the tool description shown to the agent |
| enableTLS | no | true | Connect over TLS |
| maxRows | no | MCP_MAX_ROWS (100) | Row limit per query result for this tool |
Tool names are free-form, so any environment/database combination works (sql_orders_prod, sql_analytics_dev, ...) — one entry per tool. The file is validated at startup: duplicate names, malformed JSON, or a missing file stop the service with a clear error. 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/<your-db>/SKILL.md describing the schema, relations, and conventions (use ecommerce-demo-db as the pattern), and list it in 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 veri
Truncated for display — read the full file on GitHub.
Related Skills
claude-mem
93.3kPersistent Context Across Sessions for Every Agent – Captures everything your agent does during sessions, compresses it with AI, and injects relevant context back into future sessions. Works with Claude Code, OpenClaw, Codex, Gemini, Hermes, Copilot, OpenCode + More
Agent-Reach
78.2kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
ruflo
70.6k🌊 The original agent meta-harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
headroom
69.0kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
