Skip to content

Commit 51b2311

Browse files
authored
Add WordPress MCP server (#227)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent f8d6ed8 commit 51b2311

1 file changed

Lines changed: 93 additions & 0 deletions

File tree

servers/com.wordpress-mcp-npx.json

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.wordpress-mcp-npx",
4+
"name": "WordPress (npx)",
5+
"alias": "wordpress",
6+
"description": "Connect to a WordPress site through its remote MCP endpoint to read and manage posts, pages, users, media, and more. Authenticate with a WordPress application password (username + application password) against a self-hosted or Jetpack-connected site.",
7+
"logo": "https://avatars.githubusercontent.com/u/887802?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"productivity"
11+
],
12+
"tags": [
13+
"wordpress",
14+
"automattic",
15+
"cms",
16+
"blogging",
17+
"content",
18+
"publishing"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"@automattic/mcp-wordpress-remote"
26+
],
27+
"env": {
28+
"WP_API_URL": "${input:WP_API_URL}",
29+
"WP_API_USERNAME": "${input:WP_API_USERNAME}",
30+
"WP_API_PASSWORD": "${input:WP_API_PASSWORD}"
31+
},
32+
"metadata": {
33+
"inputs": [
34+
{
35+
"id": "WP_API_URL",
36+
"label": "WordPress Site URL",
37+
"description": "Full WordPress MCP endpoint URL, e.g. https://your-site.com/wp-json/mcp/mcp-adapter-default-server. A bare site root URL (https://your-site.com) is also accepted and resolves to the legacy /wp-json/wp/v2/wpmcp endpoint for backwards compatibility.",
38+
"type": "url",
39+
"required": true,
40+
"secret": false,
41+
"placeholder": "https://your-site.com/wp-json/mcp/mcp-adapter-default-server"
42+
},
43+
{
44+
"id": "WP_API_USERNAME",
45+
"label": "WordPress Username",
46+
"description": "The WordPress account username that owns the application password used for authentication.",
47+
"type": "text",
48+
"required": true,
49+
"secret": false,
50+
"placeholder": "your-username"
51+
},
52+
{
53+
"id": "WP_API_PASSWORD",
54+
"label": "Application Password",
55+
"description": "A WordPress application password generated for this account. This is not your normal login password.",
56+
"type": "text",
57+
"required": true,
58+
"secret": true,
59+
"placeholder": "xxxx xxxx xxxx xxxx xxxx xxxx",
60+
"obtain": {
61+
"url": "https://wordpress.com",
62+
"instructions": "1. Log in to your WordPress admin dashboard\n2. Go to Users > Profile (or your account's profile page)\n3. Scroll to the 'Application Passwords' section\n4. Enter a name (e.g. 'McpMux') and click 'Add New Application Password'\n5. Copy the generated password (you'll see it only once)\n\nNote: Application Passwords are a self-hosted WordPress feature. On WordPress.com sites you may instead need a WordPress.com API token or OAuth.",
63+
"button_label": "Open WordPress Profile"
64+
}
65+
}
66+
]
67+
}
68+
},
69+
"auth": {
70+
"type": "api_key",
71+
"instructions": "Authenticate with your WordPress username plus an application password. Create the application password under Users > Profile > Application Passwords in your WordPress admin dashboard. On WordPress.com sites, a WordPress.com API token or OAuth may be required instead."
72+
},
73+
"contributor": {
74+
"name": "Automattic",
75+
"github": "Automattic",
76+
"url": "https://wordpress.com"
77+
},
78+
"links": {
79+
"repository": "https://github.com/Automattic/mcp-wordpress-remote",
80+
"homepage": "https://wordpress.com",
81+
"documentation": "https://github.com/Automattic/mcp-wordpress-remote#readme"
82+
},
83+
"platforms": [
84+
"all"
85+
],
86+
"capabilities": {
87+
"tools": true,
88+
"resources": false,
89+
"prompts": false,
90+
"read_only_mode": false
91+
},
92+
"changelog_url": "https://github.com/Automattic/mcp-wordpress-remote/releases"
93+
}

0 commit comments

Comments
 (0)