-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
76 lines (76 loc) · 1.99 KB
/
server.json
File metadata and controls
76 lines (76 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.verygoodplugins/mcp-edd",
"title": "Easy Digital Downloads",
"description": "MCP server for Easy Digital Downloads REST API - sales, customers, products, analytics",
"version": "1.1.0",
"websiteUrl": "https://verygoodplugins.com/?utm_source=mcp-registry",
"repository": {
"url": "https://github.com/verygoodplugins/mcp-edd",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "@verygoodplugins/mcp-edd",
"version": "1.1.0",
"transport": {
"type": "stdio"
}
}
],
"tools": [
{
"name": "edd_validate_connection",
"description": "Validate Store API URL and credentials"
},
{
"name": "edd_list_products",
"description": "List all products from the EDD store"
},
{
"name": "edd_get_product",
"description": "Get detailed product info by ID"
},
{
"name": "edd_list_sales",
"description": "List recent sales with optional filters"
},
{
"name": "edd_get_sale",
"description": "Get sale by ID or purchase key"
},
{
"name": "edd_list_customers",
"description": "List customers with purchase stats"
},
{
"name": "edd_get_customer",
"description": "Get customer by ID or email"
},
{
"name": "edd_get_stats",
"description": "Get earnings or sales statistics"
},
{
"name": "edd_get_stats_by_date",
"description": "Get daily stats for a date range"
},
{
"name": "edd_get_stats_by_product",
"description": "Get stats breakdown by product"
},
{
"name": "edd_list_discounts",
"description": "List all discount codes"
},
{
"name": "edd_get_discount",
"description": "Get discount details by ID"
},
{
"name": "edd_get_download_logs",
"description": "Get file download history"
}
]
}