Sales Analytics 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., "@Sales Analytics MCP Serverwhat's the revenue by region?"
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.
Sales Analytics MCP Server
A Model Context Protocol (MCP) server that gives an LLM safe, structured, read-only access to a sales database. Built with the official MCP Python SDK (FastMCP), it exposes analytics tools that a client like Claude Desktop can call to answer questions like "which region has the highest revenue?" or "show me the top 5 customers" — grounded in real query results, not the model's guesses.
What MCP is (and why this matters)
MCP is an open protocol that standardizes how LLM applications connect to external tools and data. A server advertises a set of tools; the client's LLM decides which to call and with what arguments; the server executes and returns structured results. Instead of an LLM hallucinating an answer about your data, it calls a tool and answers from what came back.
This server exposes five tools over stdio:
Tool | What it does |
| list tables in the database |
| column names and types for a table |
| run a single read-only SELECT and return rows |
| pre-built aggregate: orders, revenue, AOV per region |
| highest lifetime-value customers |
Related MCP server: DB MCP Gateway
The decision worth defending: read-only by construction
run_sql is the interesting tool, because an MCP tool is invoked by an LLM, and an LLM
can be prompt-injected. So the tool must be safe even if the model is tricked into asking
for something destructive. The guard rejects anything that isn't a single SELECT:
must start with
SELECT(orWITH … SELECT)no statement chaining (a semicolon is rejected outright)
no write/DDL keywords anywhere (
DROP,DELETE,UPDATE,INSERT, …)
There are 6 parametrized tests firing real attack strings (DROP TABLE customers,
SELECT 1; DROP TABLE orders, …) and asserting every one is blocked. Treating the LLM as
an untrusted caller is the core security posture of exposing tools this way.
Try it (no LLM required)
pip install -r requirements.txt
make db # build the sample SQLite database
make test # 16 tests, incl. 6 SQL-injection guardsUse it with Claude Desktop
make dbto build the database.Add
src/server.pytoclaude_desktop_config.json(seeclaude_desktop_config.example.json— use an absolute path).Restart Claude Desktop. The tools appear, and you can ask questions like "what's revenue by region?" and watch the model call
revenue_by_regionand answer from the result.
Design: pure logic + thin protocol layer
src/tools.py holds the tool logic as plain, dependency-free functions — so they're
exhaustively unit-testable without a running MCP client. src/server.py is a thin FastMCP
wrapper that turns each function into an advertised tool via @mcp.tool(), using type hints
and docstrings to build the schema the LLM sees. Separating logic from protocol is what
makes the security guards easy to test in isolation.
Skills demonstrated
Skill | Where |
Model Context Protocol (MCP) |
|
LLM tool/function calling | the five |
Prompt-injection–aware security |
|
SQL | analytical queries, schema introspection |
Clean architecture / testing | pure logic vs. protocol layer; 16 tests |
Structure
src/build_db.py sample SQLite sales database
src/tools.py pure tool logic + SQL safety guards (no MCP dependency)
src/server.py FastMCP server exposing the tools
tests/ 16 tests incl. injection guards
claude_desktop_config.example.jsonNote
The database is generated locally (src/build_db.py) so the server is self-contained. Point
tools.DB_PATH at a real database with the same shape and the server is unchanged. The tools
are read-only by design; adding write tools would mean adding authentication and per-tool
authorization, which is deliberately out of scope for a read-only analytics surface.
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
- AlicenseNot gradedqualityDmaintenanceProvides secure, read-only PostgreSQL database access via MCP tools like query_inventory and get_top_sales. Blocks dangerous SQL commands while allowing AI to execute controlled SELECT queries.149ISC
- AlicenseNot gradedqualityBmaintenanceProvides read-only access to databases for MCP-compatible AI tools, allowing schema exploration and SELECT queries without exposing credentials or risking data changes.833MIT
- FlicenseNot gradedqualityCmaintenanceEnables natural-language sales queries against a SQLite database, generating and executing read-only SQL through a secure MCP server with table listing, schema description, and query execution.
- FlicenseNot gradedqualityCmaintenanceProvides Claude Desktop and other MCP-compatible clients with read-only access to a PostgreSQL sales database, enabling SQL queries, schema inspection, and anomaly detection.
Related MCP Connectors
Read-only MCP server for wafergraph.com's semiconductor & AI supply-chain data: 30 tools, no auth.
Read-only MCP server for Muovi, Argentina's trust-first local services marketplace (6 tools).
Read-only SaaS business intelligence from GA4, Stripe, and Google Search Console.
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/AryanPatial/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server