forked from Automattic/wordpress-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 1.03 KB
/
composer.json
File metadata and controls
30 lines (30 loc) · 1.03 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
{
"name": "automattic/wordpress-mcp",
"description": "A plugin to integrate WordPress with Model Context Protocol (MCP), providing AI-accessible interfaces to WordPress data and functionality through standardized tools, resources, and prompts. Enables AI assistants to interact with posts, users, site settings, and WooCommerce data.",
"type": "wordpress-plugin",
"homepage": "https://github.com/Automattic/wordpress-mcp",
"license": "GPL-2.0-or-later",
"author": "Automattic AI (https://automattic.ai)",
"require-dev": {
"phpunit/phpunit": "^9.0",
"yoast/phpunit-polyfills": "^1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"firebase/php-jwt": "^6.11"
},
"autoload": {
"psr-4": {
"Automattic\\WordpressMcp\\": "includes/"
}
},
"autoload-dev": {
"psr-4": {
"Automattic\\WordpressMcp\\Tests\\": "tests/phpunit/"
}
}
}