Agentic Support Agent MCP
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., "@Agentic Support Agent MCPMy order ORD1002 seems delayed and I need it urgently, my email is a@b.com. What can you do?"
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.
Agentic Customer Support Assistant (FastAPI + RAG + MCP)
An e-commerce support agent that looks up real order data, answers policy questions grounded in an FAQ via RAG, and files support tickets autonomously when it can't resolve an issue — all decided by the LLM in a tool-use loop, not hardcoded if/else logic.
This is intentionally a different domain from a plain "document Q&A" RAG project (order lookups + ticket creation are actions, not just retrieval), which is useful if you want two distinct pieces on a resume rather than the same idea twice.
What it demonstrates
Agentic AI: multi-step tool use — the model chains
check_order_status→faq_search→create_support_ticketin a single conversation when needed.FastAPI: REST endpoints with request validation via Pydantic and auto-generated docs.
RAG: FAQ documents chunked and retrieved by relevance before answering policy questions.
MCP: the same order/ticket/FAQ tools are exposed as an MCP server (
app/mcp_server.py) for use outside this API, e.g. from Claude Desktop.
Related MCP server: CommerceHub MCP
Setup
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
cp .env.example .env # add your GROQ_API_KEYRun
uvicorn app.main:app --reload --port 8001Docs at http://localhost:8001/docs.
Example: full agentic flow
curl -X POST http://localhost:8001/agent/chat \
-H "Content-Type: application/json" \
-d '{"message": "My order ORD1002 seems delayed and I need it urgently, my email is a@b.com. What can you do?"}'Expected reasoning chain: check_order_status(ORD1002) → sees it's still Processing → faq_search("shipping delay") for policy context → decides the customer needs escalation → create_support_ticket(...) → returns a ticket ID and a clear explanation.
Mock data
data/faq.txt— returns/shipping/cancellation policy the RAG layer retrieves from.app/tools.py— in-memory fake order DB (ORD1001,ORD1002,ORD1003) and ticket store. Swap for a real database/CRM in production; the tool function signatures stay the same.
Run as an MCP server
python -m app.mcp_serverExposes faq_search, check_order_status, create_support_ticket, get_ticket_status to any MCP host.
Interview talking points
Why tools return structured dicts, not free text: the LLM reasons over structured data more reliably, and it's what lets the same functions be reused for the plain REST endpoints (
/orders/{id}) and the agent loop.The system prompt explicitly tells the model when to escalate to a ticket vs. answer from FAQ/order data — a key agent-design decision (over-eager ticket creation is a common failure mode worth mentioning).
max_stepsguards against infinite tool-call loops — a real reliability concern in agentic systems.
Possible extensions
Persist tickets/orders in Postgres instead of in-memory dicts.
Add a
/agent/chatconversation ID + stored history for multi-turn support chats.Add human-in-the-loop escalation (Slack webhook) when a ticket is created.
Rate-limit and add API-key auth before any public deployment.
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
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to perform e-commerce operations including product search, budget-constrained shopping recommendations, and sustainability analysis. Includes a secure HTTP bridge with OAuth integration and observability features for production deployment.
- AlicenseCqualityDmaintenanceEnables AI agents to manage e-commerce operations across multiple platforms (Shopify, WooCommerce, Stripe, MercadoLibre) through a conversational interface.4116MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to assist sales advisors of the fictional e-commerce Velora by providing tools to search products, check stock, get order status, and handle returns.
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to browse product catalogs, search products with filters, and initiate checkouts, generating order summaries and checkout URLs.
Related MCP Connectors
Run AI customer support from your terminal: conversations, knowledge base, and chat widget.
Manage your NanoCart store from any AI agent: products, orders, coupons, subscribers, reports.
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
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/snehaharurkar/-agentic-support-agent-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server