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: MCP PostgreSQL Secure Query Server
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
- Alicense-qualityDmaintenanceProvides AI assistants with secure read-only access to MySQL databases through validated SELECT queries. Supports SSL/TLS connections and implements multiple security layers to prevent data modification.9763MIT
- Alicense-qualityDmaintenanceProvides 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.109ISC
- Alicense-qualityAmaintenanceProvides a read-only PostgreSQL SQL surface for LLM agents via MCP, with defense-in-depth security layers for safe database queries.3MIT
- Alicense-qualityCmaintenanceA read-only MCP server that enables LLMs to safely explore and query any SQLite database via natural language. It exposes tools for listing tables, describing schemas, and executing SELECT/WITH queries with built-in safety guards like write prevention and row limits.MIT
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).
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/AryanPatial/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server