-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.mcp.json
More file actions
203 lines (203 loc) · 5.46 KB
/
.mcp.json
File metadata and controls
203 lines (203 loc) · 5.46 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
{
"name": "gravitykit-mcp",
"version": "1.0.0",
"description": "MCP server for Gravity Forms",
"command": "node",
"args": ["src/index.js"],
"env": {
"NODE_ENV": "production"
},
"capabilities": {
"tools": {
"list": true,
"call": true
}
},
"tools": [
{
"name": "gf_list_forms",
"description": "List all forms with optional filtering and pagination",
"category": "Forms Management"
},
{
"name": "gf_get_form",
"description": "Get a specific form by ID with complete schema",
"category": "Forms Management"
},
{
"name": "gf_create_form",
"description": "Create a new form with fields and settings",
"category": "Forms Management"
},
{
"name": "gf_update_form",
"description": "Update an existing form",
"category": "Forms Management"
},
{
"name": "gf_delete_form",
"description": "Delete or trash a form (requires ALLOW_DELETE=true)",
"category": "Forms Management"
},
{
"name": "gf_validate_form",
"description": "Validate form submission data",
"category": "Forms Management"
},
{
"name": "gf_list_entries",
"description": "Search and list entries with advanced filtering",
"category": "Entries Management"
},
{
"name": "gf_get_entry",
"description": "Get a specific entry by ID",
"category": "Entries Management"
},
{
"name": "gf_create_entry",
"description": "Create a new entry",
"category": "Entries Management"
},
{
"name": "gf_update_entry",
"description": "Update an existing entry",
"category": "Entries Management"
},
{
"name": "gf_delete_entry",
"description": "Delete or trash an entry (requires ALLOW_DELETE=true)",
"category": "Entries Management"
},
{
"name": "gf_submit_form_data",
"description": "Submit form data with full processing pipeline",
"category": "Form Submissions"
},
{
"name": "gf_validate_submission",
"description": "Validate form submission without processing",
"category": "Form Submissions"
},
{
"name": "gf_send_notifications",
"description": "Send notifications for an entry",
"category": "Notifications"
},
{
"name": "gf_list_feeds",
"description": "List all add-on feeds",
"category": "Add-on Feeds"
},
{
"name": "gf_get_feed",
"description": "Get a specific feed by ID",
"category": "Add-on Feeds"
},
{
"name": "gf_list_form_feeds",
"description": "Get all feeds for a specific form",
"category": "Add-on Feeds"
},
{
"name": "gf_create_feed",
"description": "Create a new add-on feed",
"category": "Add-on Feeds"
},
{
"name": "gf_update_feed",
"description": "Update an existing feed",
"category": "Add-on Feeds"
},
{
"name": "gf_patch_feed",
"description": "Partially update a feed",
"category": "Add-on Feeds"
},
{
"name": "gf_delete_feed",
"description": "Delete an add-on feed",
"category": "Add-on Feeds"
},
{
"name": "gf_get_field_filters",
"description": "Get field filters for a form",
"category": "Field Filters"
},
{
"name": "gf_get_results",
"description": "Get Quiz, Poll, or Survey results",
"category": "Results"
}
],
"configuration": {
"required": [
{
"name": "GRAVITY_FORMS_CONSUMER_KEY",
"description": "Consumer Key from WordPress admin: Forms > Settings > REST API",
"type": "string"
},
{
"name": "GRAVITY_FORMS_CONSUMER_SECRET",
"description": "Consumer Secret from WordPress admin: Forms > Settings > REST API",
"type": "string"
},
{
"name": "GRAVITY_FORMS_BASE_URL",
"description": "Your WordPress site URL (no trailing slash)",
"type": "string"
}
],
"optional": [
{
"name": "GRAVITY_FORMS_AUTH_METHOD",
"description": "Authentication method: 'basic' (recommended) or 'oauth'",
"type": "string",
"default": "basic"
},
{
"name": "GRAVITY_FORMS_ALLOW_DELETE",
"description": "Set to 'true' to enable DELETE operations (forms and entries)",
"type": "boolean",
"default": false
},
{
"name": "GRAVITY_FORMS_TIMEOUT",
"description": "Request timeout in milliseconds",
"type": "number",
"default": 30000
},
{
"name": "GRAVITY_FORMS_MAX_RETRIES",
"description": "Maximum number of retry attempts",
"type": "number",
"default": 3
},
{
"name": "GRAVITY_FORMS_DEBUG",
"description": "Enable debug logging",
"type": "boolean",
"default": false
}
]
},
"metadata": {
"author": "GravityKit",
"license": "MIT",
"repository": "https://github.com/GravityKit/MCP",
"documentation": "https://github.com/GravityKit/MCP#readme",
"api_coverage": "100%",
"total_tools": 24,
"authentication_methods": ["OAuth 1.0a", "Basic Authentication"],
"features": [
"Complete REST API v2 coverage",
"File upload support",
"Advanced search and filtering",
"Batch operations",
"Delete operation protection",
"Comprehensive error handling",
"Integration testing",
"Security validation"
]
}
}