-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
143 lines (143 loc) · 4.6 KB
/
Copy pathmanifest.json
File metadata and controls
143 lines (143 loc) · 4.6 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"manifest_version": "0.2",
"name": "io.github.verygoodplugins/mcp-edd",
"display_name": "Easy Digital Downloads",
"version": "1.1.0",
"description": "Query your EDD store's sales, customers, products, and analytics from Claude",
"long_description": "Query your EDD store's sales, customers, and products directly from Claude. Get instant insights into revenue, customer behavior, and product performance.\n\n**What you can do:**\n\n• Sales Analytics - \"Show me this month's revenue\" or \"Compare Q4 sales to last year\"\n• Customer Insights - \"Find customers who purchased WP Fusion\" or \"Show top 10 by lifetime value\"\n• Product Data - \"List all products with their sales stats\" or \"Show pricing for premium tier\"\n• Discount Tracking - \"Which discount codes were used this week?\"\n\nBuilt by Very Good Plugins, the team behind WP Fusion - trusted by 10,000+ WordPress sites for CRM and marketing integrations.",
"author": {
"name": "Very Good Plugins",
"email": "support@verygoodplugins.com",
"url": "https://verygoodplugins.com/?utm_source=mcpb"
},
"icon": "assets/icon.png",
"screenshots": [
"assets/screenshots/mcp-edd-setup.jpg"
],
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/index.js"
],
"env": {
"EDD_API_URL": "${user_config.edd_api_url}",
"EDD_API_KEY": "${user_config.edd_api_key}",
"EDD_API_TOKEN": "${user_config.edd_api_token}"
}
}
},
"user_config": {
"edd_api_url": {
"type": "string",
"title": "Store API URL",
"description": "Your EDD store API endpoint (must end with /edd-api/, e.g., https://example.com/edd-api/)",
"required": true
},
"edd_api_key": {
"type": "string",
"title": "API Key",
"description": "Your EDD API public key (found in Downloads → Settings → API)",
"sensitive": true,
"required": true
},
"edd_api_token": {
"type": "string",
"title": "API Token",
"description": "Your EDD API token (found in Downloads → Settings → API)",
"sensitive": true,
"required": true
}
},
"tools": [
{
"name": "edd_validate_connection",
"description": "Validate your Store API URL and credentials"
},
{
"name": "edd_list_products",
"description": "List all products from the EDD store with pricing and sales stats"
},
{
"name": "edd_get_product",
"description": "Get detailed product info including pricing tiers and license info"
},
{
"name": "edd_list_sales",
"description": "List recent sales with date, customer, and product filters"
},
{
"name": "edd_get_sale",
"description": "Get complete sale details by ID or purchase key"
},
{
"name": "edd_list_customers",
"description": "List customers with purchase history and lifetime value"
},
{
"name": "edd_get_customer",
"description": "Get customer details by ID or email address"
},
{
"name": "edd_get_stats",
"description": "Get earnings and sales totals with optional date filtering"
},
{
"name": "edd_get_stats_by_date",
"description": "Get daily revenue and sales breakdown for a date range"
},
{
"name": "edd_get_stats_by_product",
"description": "Get sales and revenue breakdown by product"
},
{
"name": "edd_list_discounts",
"description": "List all discount codes with usage stats"
},
{
"name": "edd_get_discount",
"description": "Get discount details including usage limits and expiration"
},
{
"name": "edd_get_download_logs",
"description": "Get file download history for products or customers"
}
],
"repository": {
"type": "git",
"url": "https://github.com/verygoodplugins/mcp-edd"
},
"homepage": "https://verygoodplugins.com/mcp/?utm_source=mcpb",
"documentation": "https://github.com/verygoodplugins/mcp-edd#readme",
"support": "https://github.com/verygoodplugins/mcp-edd/issues",
"privacy_policies": [
"https://verygoodplugins.com/privacy-policy/?utm_source=mcpb"
],
"license": "GPL-3.0",
"keywords": [
"mcp",
"claude",
"ai-tools",
"wordpress",
"easy-digital-downloads",
"edd",
"ecommerce",
"sales-analytics",
"customer-data",
"verygoodplugins",
"automation"
],
"compatibility": {
"claude_desktop": ">=1.0.0",
"platforms": [
"darwin",
"win32",
"linux"
],
"runtimes": {
"node": ">=18.0.0"
}
}
}