E-Commerce Support Agent MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CLAUDE_MODEL | No | The Claude model to use, e.g. claude-sonnet-5 | |
| ANTHROPIC_API_KEY | No | Anthropic API key (required for the agent, not necessarily for MCP tools) |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {
"tasks": {
"list": {},
"cancel": {},
"requests": {
"tools": {
"call": {}
},
"prompts": {
"get": {}
},
"resources": {
"read": {}
}
}
}
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_policiesA | Search company policy documents for text relevant to a question. Args: query: A self-contained search query. Conversation history is not available on this surface, so include whatever context the search needs directly in the query text. Returns: Matching policy chunks (source, section, content, relevance score) when found; grounded=False when nothing relevant enough was retrieved. |
| lookup_orderA | Look up an order belonging to an authenticated customer. Args: order_id: The order identifier, for example ORD-1002. Returns: Customer-safe order status and delivery information when the customer is authorized to access the order. |
| check_account_statusA | Retrieve the current status of a customer account. This MCP-facing tool accepts a customer ID because an external MCP client does not share the local agent's AuthContext. The calling client remains responsible for authenticating and authorizing the customer before invoking this tool. |
| list_customer_ordersA | List orders associated with a specific customer. Use this when the customer wants to view their orders but has not provided one specific order ID. The customer ID is required. |
| check_product_availabilityA | Check whether a product is currently available and return its available stock quantity. Use this when a customer asks whether a particular product is in stock. The product ID is required. |
| cancel_orderA | Cancel an order belonging to a specific customer. This is a state-changing operation, gated the same way as the in-process agent: the order must exist, must belong to customer_id, and must be in a cancellable state (Pending or Processing). Call with confirmed=False first to preview the result without cancelling anything; call again with confirmed=True only after the customer has explicitly confirmed that specific order. The calling client remains responsible for authenticating the customer before invoking this tool. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
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/CuriousMonkey414/ecommerce-customer-support-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server