-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmcp-wordpress.config.json.example
More file actions
45 lines (45 loc) · 1.41 KB
/
mcp-wordpress.config.json.example
File metadata and controls
45 lines (45 loc) · 1.41 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
{
"$comment": "Multi-site WordPress MCP Server Configuration - IMPORTANT: Do NOT use quotes around password values with spaces. The JSON format handles them correctly.",
"sites": [
{
"id": "site1",
"name": "My First WordPress Site",
"config": {
"WORDPRESS_SITE_URL": "https://site1.example.com",
"WORDPRESS_USERNAME": "your_username",
"WORDPRESS_APP_PASSWORD": "xxxx xxxx xxxx xxxx xxxx xxxx"
}
},
{
"id": "site2",
"name": "My Second WordPress Site",
"config": {
"WORDPRESS_SITE_URL": "https://site2.example.com",
"WORDPRESS_USERNAME": "your_username",
"WORDPRESS_APP_PASSWORD": "xxxx xxxx xxxx xxxx xxxx xxxx",
"WORDPRESS_AUTH_METHOD": "app-password"
}
},
{
"id": "corporate-blog",
"name": "Corporate Blog (JWT Auth)",
"config": {
"WORDPRESS_SITE_URL": "https://blog.company.com",
"WORDPRESS_USERNAME": "your_username",
"WORDPRESS_JWT_PASSWORD": "your_user_password",
"WORDPRESS_JWT_SECRET": "your_jwt_secret_key",
"WORDPRESS_AUTH_METHOD": "jwt"
}
},
{
"id": "dev-site",
"name": "Development Site (Basic Auth)",
"config": {
"WORDPRESS_SITE_URL": "https://dev.example.com",
"WORDPRESS_USERNAME": "admin",
"WORDPRESS_PASSWORD": "your_password",
"WORDPRESS_AUTH_METHOD": "basic"
}
}
]
}