forked from RaheesAhmed/wordpress-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.65 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
{
"name": "wpmcp",
"version": "3.0.0",
"description": "MCP server for WordPress with 190+ tools - complete WordPress control including WooCommerce, Gutenberg, SEO, Security, Performance, Backup, and User Roles - 99% developer task coverage",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"wordpress-mcp-server": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"wordpress",
"ai",
"claude",
"wpagent",
"model-context-protocol",
"wordpress-api",
"wordpress-rest-api",
"wordpress-automation",
"ai-agent",
"langgraph",
"anthropic",
"cms",
"content-management",
"wordpress-developer",
"theme-development",
"plugin-management",
"wordpress-database",
"file-system",
"child-themes"
],
"author": {
"name": "Rahees Ahmed",
"url": "https://github.com/RaheesAhmed"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RaheesAhmed/wordpress-mcp-server.git"
},
"homepage": "https://github.com/RaheesAhmed/wordpress-mcp-server#readme",
"bugs": {
"url": "https://github.com/RaheesAhmed/wordpress-mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"node-fetch": "^3.3.2",
"quickmcp-sdk": "^1.0.2"
},
"devDependencies": {
"@types/node": "^20.11.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}