AgentBridge
WordPress MCP server for AI agents.
Model Context Protocol server that exposes WordPress capabilities to AI agents through standardized interfaces.
What it does
◆
MCP server implementation
Full Model Context Protocol server that exposes WordPress data and capabilities to AI agents.
◆
Resource discovery
Agents automatically discover posts, pages, users, and taxonomies through MCP resource listing.
◆
Tool integration
Standardized tools for content creation, updates, and queries that any MCP-compatible agent can use.
◆
Secure authentication
Bearer token authentication with configurable permissions and audit logging.
How it works
- 1
Install AgentBridge
Upload the plugin, activate it, and generate an API token from Settings → AgentBridge.
- 2
Configure MCP client
Add the AgentBridge server URL and token to your AI agent's MCP configuration.
- 3
Start automating
Agents can now read, create, and modify WordPress content through standardized MCP calls.
MCP server configuration
{
"mcpServers": {
"agentbridge": {
"command": "node",
"args": ["server.js"],
"env": {
"AGENTBRIDGE_URL": "https://my-wordpress-site.com",
"AGENTBRIDGE_TOKEN": "sk_live_abc123xyz789mno456"
}
}
}
}