@erickwendel/ew-customers-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_customersA | List all customers |
| get_customerA | Find a customer by id, name, or phone number |
| create_customerB | Create a customer |
| update_customerA | Update an existing customer's name and/or phone number by their id |
| delete_customerB | Delete a customer by their id |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| find_customer_prompt | Prompt to search a customer using any combination of id, name or phone |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| api_info | Describes the customers REST API that this MCP server wraps |
TDQS
Scored across 5 tools
Each tool has a clear, distinct purpose: list, get, create, update, and delete customers. No overlap or ambiguity between them.
All tools follow the consistent verb_noun pattern: list_customers, get_customer, delete_customer, create_customer, update_customer. Perfectly consistent.
With 5 tools, the set is well-scoped for a customers CRUD server. Each tool is necessary and none are redundant.
The tool set covers full CRUD operations (list, get, create, update, delete) for customers, missing only a bulk operation or search by multiple criteria, but agents can achieve most workflows.