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
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 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
- 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.Last updated1
- FlicenseBqualityCmaintenanceA customer and product management MCP server using SQLite. It enables Claude Desktop users to manage client and product data through natural language interactions.Last updated91
- Flicense-qualityBmaintenanceA Python MCP server providing AI agents with tools for local knowledge base search, business context retrieval, and text summarization prompt generation.Last updated
- Flicense-qualityDmaintenanceA unified MCP server that lets Claude query any SQLite database and build live Streamlit dashboards — all from a single conversation.Last updated1
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
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/yesidevelop/simple-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server