Acme Operations Assistant
Provides a set of MCP tools that enable AI agents to search customers, retrieve orders, manage support tickets, and generate account summaries by interacting with business data stored in SQLite.
Click on "Deploy 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., "@Acme Operations AssistantShow account summary for CUST-1003"
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.
Acme Operations Assistant (MCP demo)
A client-ready demo: an AI operations assistant for customer support and account managers, built on the Model Context Protocol.
Stack: MCP server → SQLite business data → OpenAI → Streamlit UI
Why this is a “real” project
Business domain — customers, orders, support tickets (not
hello worldmath)Persistent data — seeded SQLite database you can reset and extend
Transparent tool calls — the UI shows exactly which MCP tools ran and what they returned
Portable integration — the same MCP server works in Cursor, custom apps, or OpenAI Agents SDK
Related MCP server: Gestao-MCP
Quick start (client demo)
cd /apps/tmp/mcp-servers
python3 -m venv .venv && source .venv/bin/activate
pip install -e ".[demo]"
export OPENAI_API_KEY=sk-...
streamlit run demo_app.pyOpen http://localhost:8501 and use the sidebar scenario buttons.
Full presenter script: DEMO.md
Project layout
File | Purpose |
| MCP server — 7 business tools over stdio |
| SQLite schema + demo seed data |
| Streamlit chat UI for presentations |
| OpenAI ↔ MCP bridge (shared by UI and CLI) |
| Smoke test MCP tools (no API key) |
| CLI assistant |
| Same flow via OpenAI Agents SDK |
MCP tools
Tool | Description |
| Search by name, id, email, industry |
| Full customer profile |
| Order status + line items |
| Order history for a customer |
| Open support tickets |
| Create ticket (writes to DB) |
| Executive snapshot for an account |
Commands
# UI demo (recommended for clients)
streamlit run demo_app.py
# MCP smoke test — no OpenAI key
python client.py
# CLI assistant
python openai_chat.py "Account summary for CUST-1003"
# Reset demo database
python scripts/reset_demo_data.pyConnect to OpenAI (details)
The MCP server uses stdio. Your app must spawn it (as demo_app.py and assistant.py do).
Chat Completions bridge:
assistant.py/openai_chat.pyAgents SDK:
openai_agent.py—pip install -e ".[agents]"Responses API (remote URL): deploy server over HTTP; see OpenAI MCP guide
Cursor / Claude Desktop
{
"mcpServers": {
"acme-operations": {
"command": "/apps/tmp/mcp-servers/.venv/bin/python",
"args": ["/apps/tmp/mcp-servers/server.py"]
}
}
}Next steps for production
Replace SQLite with CRM/ERP APIs behind the same tool names
Add auth (OAuth) per user and row-level access on tools
Require human approval for
create_support_ticketin productionDeploy MCP over HTTP + host the Streamlit app behind SSO
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
API-first CRM for LLMs - contacts, companies, deals and activities over a native MCP server.
MCP server for AI dialogue using various LLM models via AceDataCloud
Remote MCP server for supportsheep: run AI interviews and manage support content for your blog.
Related MCP Servers
- FlicenseCqualityDmaintenanceThis is an MCP server that facilitates building tools for interacting with various APIs and workflows, supporting Python-based development with potential for customizable prompts and user configurations.1-
- FlicenseBqualityDmaintenanceA customer and product management MCP server using SQLite. It enables Claude Desktop users to manage client and product data through natural language interactions.91-
- FlicenseAqualityCmaintenanceA unified MCP server that lets Claude query any SQLite database and build live Streamlit dashboards — all from a single conversation.101-
- AlicenseNot gradedqualityDmaintenanceMCP server deployed on Render using SSE transport, providing tools for user management, ERP operations, SQLite database interaction, and server stats.3 npm1MIT