OctoQuery
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., "@OctoQueryWho are our top 5 customers by total spend?"
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.
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 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
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 ONLY transaction) — 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.
Related MCP server: mcp-db-server
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 octoqueryInstall dependencies:
npm installStart 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 -dConfigure 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.jsonRun it:
npm run start:devThe 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?" |
| |
"Which blog post got the most comments?" |
| |
"Who has overdue library books, and which titles?" |
| |
"Which urgent tickets are still unassigned?" |
|
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 |
| yes | — | Tool name shown to the agent (letters, digits, |
| yes | — | Database host |
| yes | — | Database name |
| yes | — | Database user (prefer a read-only one) |
| yes | — | Database password |
| no |
| Engine: |
| no | engine standard (5432 postgres, 3306 mysql/mariadb, 1433 mssql) | Database port |
| no | the | Human-friendly name used in the tool title and description |
| no | generated from | Full override of the tool description shown to the agent |
| no |
| Connect over TLS |
| no |
| 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 testThere 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/inspectorIn 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:<port>); 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 and MariaDB — where DDL escapes read-only transactions via implicit commit — statements are additionally restricted to a read allowlist (SELECT,WITH,SHOW,DESCRIBE,EXPLAIN). SQL Server has no read-only transaction mode, so there statements are restricted toSELECT/WITHwithout data-modifying keywords and run inside a transaction that is always rolled back. 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
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 Servers
- AlicenseAqualityDmaintenanceA zero-config MCP server that enables AI to access, analyze, and manage local SQLite databases with secure read-only querying and automatic schema discovery.8MIT
- FlicenseNot gradedqualityBmaintenanceAn MCP server that exposes relational databases (PostgreSQL/MySQL) to AI agents with natural language to SQL query support.19
- AlicenseNot gradedqualityCmaintenanceMCP server that connects AI agents to MySQL databases for schema exploration, data querying, and SQL execution via natural language.2MIT
- AlicenseNot gradedqualityDmaintenanceZero-config MCP server that empowers AI agents to safely query SQL and NoSQL databases like PostgreSQL, MySQL, SQLite, MongoDB, and Redis.151MIT
Related MCP Connectors
GibsonAI MCP server: manage your databases with natural language
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Analytical memory for AI agents: a real Postgres queried in plain English over MCP. One command.
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/benedya/octoquery'
If you have feedback or need assistance with the MCP directory API, please join our Discord server