shop-db MCP Server
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., "@shop-db MCP ServerWhat are the top 5 products by revenue?"
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.
shop-db MCP Server
A read-only Model Context Protocol server
that gives AI agents analytical access to an e-commerce SQLite database
(customers, orders, order_items, products) — without any ability to
modify data.
Built for Node.js v24.19+, running TypeScript source files directly
(no build step) using native node:sqlite and node:test.
Setup
npm installThe repository already includes a populated ./shop.db at the project
root — no seeding step is needed. Nothing in npm start or npm test
writes to it: the server opens it read-only, and the test suite builds its
own throwaway databases under tests/ from tests/fixtures/seed.sql.
Related MCP server: shop-mcp
Run the server
npm startThe server communicates over stdio (StdioServerTransport) — it's meant to
be launched by an MCP client (Claude Code, Claude Desktop, etc.), not run
interactively.
Tests
npm testRuns node --test against tests/, covering SQL validation edge cases
(mutation keywords, comment-evasion, multi-statement injection, CTEs,
EXPLAIN) and the three MCP tools end-to-end against isolated test
databases built from tests/fixtures/seed.sql. The committed ./shop.db
is never read or written by the test suite.
Configuring the database path
By default the server reads ./shop.db (relative to the working
directory it's launched from). Override with the DB_PATH environment
variable:
DB_PATH=/absolute/path/to/shop.db npm startTools
list_tables— lists the 4 tables with a short description of each.describe_table— column definitions, types, primary keys, and up to 3 sample rows, for one table (tableName) or all tables (omit it).read_query— executes a read-onlySELECT/WITH/EXPLAIN/PRAGMAquery (query, required) and returns up tolimitrows (optional, default 100, max 1000). Any mutation attempt (INSERT,UPDATE,DELETE,DROP, ...) is rejected with a clear error, even if disguised with SQL comments or wrapped in a CTE.
AI agent config
{
"mcpServers": {
"shop-db": {
"command": "node",
"args": ["/absolute/path/to/src/index.ts"],
"env": {
"DB_PATH": "/absolute/path/to/shop.db"
}
}
}
}Project docs
AGENTS.md— instructions for AI coding agents working on this repo (also loaded asCLAUDE.mdvia symlink).CONTEXT.md— domain model and safety architecture.
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
- AlicenseAqualityBmaintenanceEnables AI agents to safely interact with a SQLite shop database through schema discovery, read-only SQL queries, and pre-built analytics reports like top customers, top products, and revenue summaries.692MIT
- FlicenseAqualityCmaintenanceEnables AI agents to answer analytical questions about an online store's SQLite database through specialized read-only tools, without any risk of modifying the underlying data.8
- FlicenseAqualityCmaintenanceEnables AI agents to safely inspect and query an SQLite e-commerce database with tools for listing tables, describing schemas, and running read-only SQL queries while blocking destructive operations.4
Related MCP Connectors
Explore, query, and inspect SQLite databases with ease. List tables, preview results, and view det…
Query PostgreSQL databases in plain English — LLM-generated, safety-validated SQL.
Run SOQL queries to explore and retrieve Salesforce data. Access accounts, contacts, opportunities…
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/bulychauPI/shop-db-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server