Kites AI Connector for Model Context Protocol
Connect your WordPress site securely to AI agents like Claude Desktop, Cursor, LangChain, and AutoGen using the open Model Context Protocol (MCP) standard.
Full MCP Specification
Full JSON-RPC 2.0 transport support over standard HTTP POST endpoints and real-time Server-Sent Events (SSE) streaming.
Hashed API Key Security
SHA-256 hashed API authentication tokens, client IP whitelisting, and per-key rate limiting to protect your site.
Capability Guardrails
All tool executions strictly validate native WordPress user capabilities (edit_posts, publish_posts, manage_options).
Read-Only Mode & Permission Scopes
Enforce global read-only mode or generate read-only API keys to prevent AI models from modifying your posts, pages, or options.
Live Audit Logging
Inspect every incoming AI request, tool invocation payload, response code, client IP address, and execution duration in real time.
Quick Agent Configuration
Add your WordPress site to Claude Desktop configuration file (claude_desktop_config.json):
{
"mcpServers": {
"wordpress": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch",
"https://your-site.com/wp-json/wpmcp/v1/mcp"
],
"headers": {
"Authorization": "Bearer YOUR_WPMCP_API_KEY"
}
}
}
}