-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmcp.json
More file actions
179 lines (179 loc) · 4.56 KB
/
mcp.json
File metadata and controls
179 lines (179 loc) · 4.56 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
{
"name": "gravitykit-mcp",
"version": "2.1.0",
"description": "MCP server for Gravity Forms",
"author": "GravityKit",
"license": "MIT",
"capabilities": {
"tools": 26,
"resources": 0
},
"tools": [
{
"name": "gf_list_forms",
"description": "List all forms with optional filtering and pagination",
"category": "forms"
},
{
"name": "gf_get_form",
"description": "Get a specific form by ID with complete schema",
"category": "forms"
},
{
"name": "gf_create_form",
"description": "Create a new form with fields and settings",
"category": "forms"
},
{
"name": "gf_update_form",
"description": "Update an existing form",
"category": "forms"
},
{
"name": "gf_delete_form",
"description": "Delete or trash a form",
"category": "forms"
},
{
"name": "gf_validate_form",
"description": "Validate form submission data",
"category": "forms"
},
{
"name": "gf_list_entries",
"description": "Search and list entries with advanced filtering",
"category": "entries"
},
{
"name": "gf_get_entry",
"description": "Get a specific entry by ID",
"category": "entries"
},
{
"name": "gf_create_entry",
"description": "Create a new entry",
"category": "entries"
},
{
"name": "gf_update_entry",
"description": "Update an existing entry",
"category": "entries"
},
{
"name": "gf_delete_entry",
"description": "Delete or trash an entry",
"category": "entries"
},
{
"name": "gf_submit_form_data",
"description": "Submit form data with full processing pipeline",
"category": "submissions"
},
{
"name": "gf_validate_submission",
"description": "Validate form submission without processing",
"category": "submissions"
},
{
"name": "gf_send_notifications",
"description": "Send notifications for an entry",
"category": "notifications"
},
{
"name": "gf_list_feeds",
"description": "List all add-on feeds",
"category": "feeds"
},
{
"name": "gf_get_feed",
"description": "Get a specific feed by ID",
"category": "feeds"
},
{
"name": "gf_create_feed",
"description": "Create a new add-on feed",
"category": "feeds"
},
{
"name": "gf_update_feed",
"description": "Update an existing feed",
"category": "feeds"
},
{
"name": "gf_patch_feed",
"description": "Partially update a feed",
"category": "feeds"
},
{
"name": "gf_delete_feed",
"description": "Delete an add-on feed",
"category": "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"
},
{
"name": "gf_add_field",
"description": "Add a field to a form",
"category": "field_operations"
},
{
"name": "gf_update_field",
"description": "Update a field in a form",
"category": "field_operations"
},
{
"name": "gf_delete_field",
"description": "Delete a field (checks dependencies)",
"category": "field_operations"
},
{
"name": "gf_list_field_types",
"description": "List available field types",
"category": "field_operations"
}
],
"authentication": {
"basic_auth": {
"required": ["consumer_key", "consumer_secret", "base_url"],
"description": "Basic authentication (recommended for Gravity Forms v2)",
"security_note": "Requires HTTPS connection"
},
"oauth_1_0a": {
"required": ["consumer_key", "consumer_secret", "base_url"],
"description": "OAuth 1.0a authentication (advanced option)"
}
},
"environment": {
"required": [
"GRAVITY_FORMS_CONSUMER_KEY",
"GRAVITY_FORMS_CONSUMER_SECRET",
"GRAVITY_FORMS_BASE_URL"
],
"optional": [
"GRAVITY_FORMS_ALLOW_DELETE",
"GRAVITY_FORMS_TIMEOUT",
"GRAVITY_FORMS_MAX_RETRIES",
"GRAVITY_FORMS_RETRY_DELAY",
"GRAVITY_FORMS_DEBUG",
"GRAVITY_FORMS_RATE_LIMIT",
"GRAVITY_FORMS_RATE_WINDOW"
]
},
"features": {
"api_coverage": "100%",
"endpoints_covered": 15,
"delete_protection": true,
"file_uploads": true,
"batch_operations": true,
"advanced_filtering": true,
"comprehensive_testing": true
}
}