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 "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., "@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
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 installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/yesidevelop/simple-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server