mcp-edd
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| EDD_API_KEY | Yes | Your EDD API public key | |
| EDD_API_URL | Yes | URL of the Easy Digital Downloads API endpoint (e.g. https://your-store.com/edd-api/) | |
| EDD_API_TOKEN | Yes | Your EDD API token |
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| edd_list_productsA | List products from the Easy Digital Downloads store with pricing, stats, and SKU. Optionally search by keyword, filter by category slug/ID, or filter by tag slug/ID. Category and tag filters can be combined. |
| edd_get_productB | Get detailed information about a specific product by ID |
| edd_list_salesB | List recent sales/transactions with optional filtering by email or date range |
| edd_get_saleB | Get detailed information about a specific sale by ID or purchase key |
| edd_list_customersA | List customers with their purchase statistics (date_created, additional_emails included). Optionally filter by creation date preset (today/yesterday) or a custom date range in YYYYMMDD format. |
| edd_get_customerA | Get detailed customer information by EDD customerId or email. Returns full customer data including date_created and additional_emails. |
| edd_get_statsB | Get earnings or sales statistics (current month, last month, and all-time totals) |
| edd_get_stats_by_dateB | Get daily earnings or sales statistics for a custom date range |
| edd_get_stats_by_productB | Get earnings or sales statistics broken down by product |
| edd_list_discountsB | List all discount codes with their usage statistics |
| edd_get_discountC | Get detailed information about a specific discount code |
| edd_get_download_logsB | Get file download history, optionally filtered by product or customer |
| edd_validate_connectionA | Validate Store API URL and credentials by making lightweight requests (products + one authenticated endpoint). |
| edd_get_discount_by_codeA | Look up a discount by its code string (case-insensitive) |
| edd_list_active_discountsA | List only currently active discount codes, filtering out expired and disabled ones |
| edd_get_stats_by_presetA | Get earnings or sales statistics using a preset date filter (today, yesterday, this_week, this_month, etc.) |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 16 tools
Each tool has a clearly distinct purpose: unique resources (customer, discount, product, sale, stats, logs) with specific operations. Even similar tools like get_discount and get_discount_by_code are differentiated by lookup method, and the multiple stats tools are differentiated by grouping (date, preset, product). No ambiguity.
All tools follow the consistent pattern 'edd_verb_noun', using 'get_' for single items and 'list_' for collections, with lowercase and underscores throughout. The only outlier, 'validate_connection', still uses the same verb-noun style and is clearly distinguishable.
With 16 tools, the server covers the core read operations and statistics for an EDD store without being overwhelming. Each tool has a clear role, and the count is well-scoped for a domain-specific server.
The server is heavily read-focused (all tools are get/list/validate), lacking any create, update, or delete operations for customers, discounts, products, or sales. While potentially intentional for an analytics-only tool, the absence of write operations is a notable gap for full store management.