WordPress MCP
A Python MCP server for interacting with a local WordPress instance.
Very much a work in progress that has not progressed
You should go to https://github.com/Automattic/wordpress-mcp for a fully functional WordPress MCP implementation.
To try it you currently need a WordPress instance locally on http://localhost:8888/
.
It is currently a python app, I used uv
locally,so you will need to:
uv venv
source .venv/bin/activate
uv pip install -r requirements.txt
You can then run the server with uv run wp.py
to see if you get any errors, but you don't need to run from terminal as Claude will start its own instance.
You also need to add the following to your claude_desktop_config.json
:
{
"mcpServers": {
"wordpress": {
"command": "uv",
"args": [
"--directory",
"/FULL/PATH/TO/wp-server-python",
"run",
"wp.py"
]
}
}
}
Related Servers
Neovim MCP Server
Connects any MCP client to the Neovim editor for seamless integration and control.
MCP-RAGNAR
A local MCP server implementing Retrieval-Augmented Generation (RAG) with sentence window retrieval and support for multiple file types.
ShellAgent
An MCP server for executing shell commands, requiring Node.js 18 or newer.
LLM API Benchmark MCP Server
Benchmark LLM APIs for throughput and Time To First Token (TTFT) under various concurrency levels.
PolyMarket
Access prediction market data from the PolyMarket API.
MCP Server Example
An example MCP server for educational purposes, demonstrating how to build a functional server that integrates with LLM clients.
Local MCP Test
A test server for local MCP development and setup.
MCP Server for iOS Simulator
Programmatically control iOS simulators via stdio transport. Requires macOS with Xcode and installed iOS simulators.
Remote MCP Server (Authless)
A simple, auth-less MCP server on Cloudflare Workers that provides the current time in the US Eastern timezone.
MCP POC
A proof-of-concept MCP server built with Node.js and TypeScript, compatible with Claude Desktop.