-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 4.01 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 4.01 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
{
"name": "@gravitykit/mcp",
"version": "2.4.0",
"description": "Full-featured MCP server for Gravity Forms",
"main": "src/index.js",
"type": "module",
"bin": {
"gkmcp": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"inspect": "npx @modelcontextprotocol/inspector node src/index.js",
"check-env": "node scripts/check-env.js",
"setup-test-data": "node scripts/setup-test-data.js",
"verify:tool-names": "node scripts/verify-tool-names.mjs",
"test": "node test/integration.test.js",
"test:unit": "node test/run.js",
"test:node": "node --test test/field-manager.test.js test/field-registry.test.js test/field-dependencies.test.js test/field-positioner.test.js test/helpers.test.js test/ability-catalog.test.js test/user-agent.test.js test/wp-client.test.js test/server-runtime.test.js test/entries-query.test.js test/entries-wire.test.js test/client-hardening.test.js test/validation-hardening.test.js test/sanitize-hardening.test.js test/schema-hardening.test.js test/instructions.test.js test/logger-stdout.test.js test/server-lifecycle.test.js test/bench-grading.test.js test/bench-agent.test.js test/bench-cleanup.test.js",
"test:auth": "node test/authentication.test.js",
"test:forms": "node test/forms.test.js",
"test:entries": "node test/entries.test.js",
"test:feeds": "node test/feeds.test.js",
"test:submissions": "node test/submissions.test.js",
"test:validation": "node test/validation.test.js",
"test:field-validation": "node test/field-validation.test.js",
"test:tools": "node test/server-tools.test.js",
"test:compact": "node test/compact.test.js",
"test:views": "node test/views.test.js",
"test:live": "node test/live/gf-live.mjs",
"bench": "node bench/run.mjs",
"bench:field-output": "node bench/field-output.mjs",
"bench:field-storage": "node bench/field-storage.mjs",
"bench:nested-forms": "node bench/nested-forms.mjs",
"bench:demo": "node bench/demo.mjs",
"test:all": "npm run test:unit && npm run test:node && npm run test:auth && npm run test:forms && npm run test:entries && npm run test:feeds && npm run test:submissions && npm run test:validation && npm run test:field-validation && npm run test:tools && npm run test:views && npm test",
"test:coverage": "echo 'Running all tests with coverage analysis' && npm run test:all",
"lint:package": "publint",
"lint:docs": "node scripts/check-docs.mjs",
"prepublishOnly": "npm run test:unit && npm run test:node && npm run test:field-validation && npm run test:views && npm run lint:package && npm run lint:docs"
},
"keywords": [
"mcp",
"gravity-forms",
"rest-api",
"forms",
"entries",
"wordpress",
"integration",
"automation"
],
"author": "GravityKit",
"license": "GPL-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"axios": "^1.13.6",
"dotenv": "^16.4.7"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src/",
"mcp.json",
".env.example",
"README.md",
"LICENSE",
"CLAUDE.md",
"AGENTS.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GravityKit/MCP.git"
},
"bugs": {
"url": "https://github.com/GravityKit/MCP/issues"
},
"homepage": "https://github.com/GravityKit/MCP#readme",
"publishConfig": {
"access": "public"
},
"mcp": {
"tools": {
"forms": 6,
"entries": 6,
"submissions": 2,
"notifications": 1,
"feeds": 7,
"field_filters": 1,
"results": 1
},
"total_tools": 24,
"api_coverage": "100%",
"authentication": [
"OAuth 1.0a",
"Basic Authentication"
],
"features": [
"Gravity Forms REST API coverage",
"File upload support",
"Advanced search and filtering",
"Batch operations",
"Delete operation protection",
"Comprehensive error handling",
"Integration testing",
"Security validation"
]
},
"devDependencies": {
"publint": "^0.3.21"
}
}