forked from InstaWP/mcp-wp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.53 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.53 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
{
"name": "@missionsquad/mcp-wordpress",
"version": "0.2.6",
"description": "A Model Context Protocol server for interacting with WordPress.",
"type": "module",
"main": "./build/server.js",
"exports": "./build/server.js",
"bin": {
"mcp-wp": "./build/server.js"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"start": "node ./build/server.js",
"dev": "tsx watch src/server.ts",
"clean": "rimraf build",
"test": "vitest run",
"test:acf-content": "tsx ./scripts/test-acf-content.ts",
"test:acf-schema": "tsx ./scripts/test-acf-schema.ts",
"test:login": "tsx ./scripts/test-login.ts",
"test:watch": "vitest",
"typecheck:scripts": "tsc --project tsconfig.scripts.json",
"prepare": "npm run build"
},
"keywords": [
"wordpress",
"mcp",
"server",
"claude",
"ai",
"instawp"
],
"author": "Claude",
"license": "GPL-3.0-or-later",
"dependencies": {
"@missionsquad/fastmcp": "^1.1.3",
"@modelcontextprotocol/sdk": "^1.4.1",
"axios": "^1.6.7",
"dotenv": "^16.4.5",
"form-data": "^4.0.4",
"fs-extra": "^11.2.0",
"marked": "^17.0.3",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.0",
"rimraf": "^5.0.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^2.1.8"
},
"publishConfig": {
"access": "public"
},
"files": [
"build",
"README.md",
"LICENSE"
]
}