Bifrost is a WordPress plugin that exposes your site as an MCP server. Claude, ChatGPT, Gemini, Cursor — all of them can read, plan, and (with your permission) write to your site. No API keys to manage. No app passwords. OAuth + your Miradoes account.
Click "Create account & download Free" above. 30-second signup, then you get a .zip file (~90 KB). Same flow for Pro after purchase.
In your WP admin: Plugins → Add New → Upload Plugin → choose the .zip → Install Now → Activate.
A new menu "Miradoes" appears in wp-admin. Click it, then "Sign in with Miradoes". An OAuth dialog opens on miradoes.com asking you to authorize. Approve → your site is linked.
Add your site as an MCP server in Claude Desktop, ChatGPT, Cursor or any other MCP client. Configs below.
Bifrost exposes your site at https://your-site.com/wp-json/wpab/v1/mcp. After OAuth, the bearer token is auto-managed by Bifrost. Copy-paste a config below to add your site to your favorite AI app.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Win):
{
"mcpServers": {
"my-wordpress": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://your-site.com/wp-json/wpab/v1/mcp"]
}
}
}
Edit ~/.cursor/mcp.json:
{
"mcpServers": {
"my-wordpress": {
"url": "https://your-site.com/wp-json/wpab/v1/mcp"
}
}
}
Create a new Custom GPT → Actions → Import OpenAPI from your site URL → use OAuth (Miradoes). Detailed walkthrough in docs.
mcp-remote npm package globally (npm install -g mcp-remote).