Sales Analytics MCP Server
销售分析 MCP 服务器
一个自定义的 Model Context Protocol (MCP) 服务器,为 Claude Desktop 提供对实时销售数据库的直接、安全访问——将 Python 分析后端转变为任何兼容 MCP 的 AI 助手都可以使用的可复用工具,而无需为每个应用编写单独的集成。
什么是 MCP,以及为什么要为它构建服务器
Model Context Protocol 是一个开放标准(由 Anthropic 创建),它让 AI 助手能够通过通用接口连接到外部工具和数据源,而不是每个助手都需要为每个工具定制集成。编写 MCP 服务器意味着为每个数据源构建一次连接——任何兼容 MCP 的客户端(如 Claude Desktop、Claude Code 或其他支持 MCP 的应用程序)都可以立即使用它,无需针对每个应用进行返工。
本项目将真实的 PostgreSQL 销售数据库(与 ai-analytics-agent 中使用的相同)作为一组 MCP 工具暴露出来,因此 Claude 可以在正常对话中直接查询它、检查其模式并运行异常检测。
Related MCP server: pg-mcp
架构
graph LR
A[Claude Desktop] -->|MCP protocol| B[Sales Analytics<br/>MCP Server]
B --> C[get_database_schema]
B --> D[run_sql_query]
B --> E[find_sales_anomalies]
C --> F[(Supabase / PostgreSQL)]
D --> F
E --> F暴露的工具
工具 | 描述 |
| 返回可用的表和列,以便 Claude 在查询前知道存在哪些数据 |
| 执行只读 SQL 查询并返回结果。阻止任何不是 |
| 对每日销售历史运行基于中位数/MAD 的稳健异常检测,并返回标记的日期及其统计偏差 |
技术栈
层 | 工具 |
协议 | Model Context Protocol (MCP) Python SDK |
客户端 | Claude Desktop |
数据库 | PostgreSQL (Supabase) |
查询层 | SQLAlchemy |
异常检测 | Pandas (median + MAD, rolling window) |
密钥 | python-dotenv |
工程笔记
在开发过程中发现了一个破坏性的 SDK 变更:MCP Python SDK 发布了一个主要版本(2.0.0),将
FastMCP重命名为MCPServer并移动了其导入路径,而本项目正在构建中。服务器已更新到新 API,而不是固定旧版本,因此代码反映了当前的 SDK 表面。Claude 选择自己的工具策略:在
find_sales_anomalies存在之前,当被要求查找异常时,Claude 独立使用run_sql_query进行调查——主动检查重复行、负金额和按类别细分,最终得出了与专用工具后来确认的相同根本原因。这很好地说明了 LLM 客户端实际上如何在通用工具和专用工具之间做出选择,而不是总是倾向于“显而易见”的专用函数。与 Text-to-SQL 代理相同的安全模型:
run_sql_query复用了基于 Python 的 Text-to-SQL 项目中相同的只读防护方法——这是一个很好的例子,说明为什么一次性精心构建该安全逻辑,在第二个独立工具中复用时能带来回报。
设置
安装依赖: pip install -r requirements.txt
创建一个包含以下内容的
.env文件: DATABASE_URL=your_postgresql_connection_string将服务器添加到 Claude Desktop 的配置文件(
claude_desktop_config.json)中:
{
"mcpServers": {
"sales-analytics": {
"command": "python",
"args": ["/full/path/to/server.py"]
}
}
}完全重启 Claude Desktop(通过任务管理器 / 活动监视器退出,而不是仅仅关闭窗口)
开始新的聊天,并向 Claude 提问,例如:
“有哪些表可用,是否有我应该知道的销售异常?”
示例交互

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
- FlicenseDqualityDmaintenanceA secure Model Context Protocol server that allows Claude to execute read-only SQL queries against a PostgreSQL database, enabling natural language interaction with database data.1
- FlicenseNot gradedqualityDmaintenanceEnables natural language querying of PostgreSQL databases through the Model Context Protocol. It translates user questions into validated SQL, executes read-only queries safely, and returns results to MCP-compatible clients like Claude Desktop.
- AlicenseAqualityAmaintenanceQuery and manage PostgreSQL databases from Claude Code, Cursor, and any MCP client, with read-only by default and built-in schema introspection, EXPLAIN, and performance diagnostics.211,8093MIT
- AlicenseAqualityBmaintenanceExposes PostgreSQL query execution, EXPLAIN, and schema inspection tools to MCP-compatible clients like Claude Desktop.31MIT
Related MCP Connectors
Query PostgreSQL databases in plain English — LLM-generated, safety-validated SQL.
Analytical memory for AI agents: a real Postgres queried in plain English over MCP. One command.
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
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/AleksandrGeraskov/mcp-sales-analytics-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server