mcp-wordpress-remote-proxy
v1.0.6
Published
MCP WordPress Remote proxy server
Maintainers
Readme
MCP WordPress Remote
A bidirectional proxy between a local STDIO MCP server and a remote WordPress MCP server.
Usage
Environment Variables
The following environment variables are required:
WP_API_URL: The URL of your WordPress site (e.g.,https://example.com)WP_API_USERNAME: Your WordPress usernameWP_API_PASSWORD: Your WordPress API password
Configuration in MCP Clients
Claude Desktop
In order to add an MCP server to Claude Desktop you need to edit the configuration file located at:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Example configuration:
{
"mcpServers": {
"wordpress-mcp": {
"command": "npx",
"args": ["mcp-wordpress-remote-proxy"],
"env": {
"WP_API_URL": "https://your-wordpress-site.com",
"WP_API_USERNAME": "your-username",
"WP_API_PASSWORD": "your-password"
}
}
}
}Cursor
The configuration file is located at ~/.cursor/mcp.json.
Example configuration:
{
"mcpServers": {
"wordpress-mcp": {
"command": "npx",
"args": ["mcp-wordpress-remote-proxy"],
"env": {
"WP_API_URL": "https://your-wordpress-site.com",
"WP_API_USERNAME": "your-username",
"WP_API_PASSWORD": "your-password"
}
}
}
}Development
Building
npm run buildDevelopment Mode
npm run devTesting
npm testLicense
MIT
