WordPress plugin with a built-in MCP server (remote HTTP, JSON-RPC over POST).
Exposes 5 tools: search_knowledge, list_conversations, get_conversation, send_message, get_site_info.
Setup: install the plugin from WordPress.org, enable the MCP server in settings, and generate an MCP API key (used as the Bearer token). The server is disabled by default.
Full connection guide: https://github.com/rapls/rapls-ai-chatbot/blob/main/MCP.md
Server Config
{
"mcpServers": {
"rapls-ai-chatbot": {
"url": "https://your-wordpress-site.com/wp-json/rapls-ai-chatbot/v1/mcp",
"headers": {
"Authorization": "Bearer YOUR_MCP_API_KEY"
}
}
}
}