TechShifu

DOCUMENTATION

Connect any AI to your WordPress

Step-by-step connection guides for every major AI client. Get up and running in under 5 minutes.

⚑ Quick Start β€” 3 steps

1Install AI Governor on WordPress
Upload and activate the plugin in wp-admin β†’ Plugins β†’ Add New.

2Create an Application Password
Go to wp-admin β†’ Users β†’ Your Profile β†’ Application Passwords. Generate one and copy it.

3Connect your AI client
Use one of the configs below. Replace YOUR-SITE.com and BASE64 with your values.

GENERATE YOUR BASE64 TOKEN

echo -n “username:application-password” | base64

Keep spaces in the application password exactly as WordPress shows them.

πŸ”Œ  Client connection guides

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  “mcpServers”: {
    “ai-governor”: {
      “command”: “npx”,
      “args”: [“-y”, “mcp-remote”,
        “https://YOUR-SITE.com/wp-json/ai-governor/v1/mcp”,
        “–header”, “Authorization: Basic BASE64”]
    }
  }
}

claude mcp add –transport http ai-governor \
  https://YOUR-SITE.com/wp-json/ai-governor/v1/mcp \
  –header “Authorization: Basic BASE64”

File: ~/.cursor/mcp.json

{
  “mcpServers”: {
    “ai-governor”: {
      “url”: “https://YOUR-SITE.com/wp-json/ai-governor/v1/mcp”,
      “headers”: { “Authorization”: “Basic BASE64” }
    }
  }
}

File: ~/.codeium/windsurf/mcp_config.json β€” same JSON shape as Cursor above.

File: .vscode/mcp.json

{
  “servers”: {
    “ai-governor”: {
      “url”: “https://YOUR-SITE.com/wp-json/ai-governor/v1/mcp”,
      “headers”: { “Authorization”: “Basic BASE64” }
    }
  }
}

File: cline_mcp_settings.json or .roo/mcp.json β€” same JSON shape as Cursor above.

File: ~/.gemini/settings.json

{
  “mcpServers”: {
    “ai-governor”: {
      “url”: “https://YOUR-SITE.com/wp-json/ai-governor/v1/mcp”,
      “headers”: { “Authorization”: “Basic BASE64” }
    }
  }
}

File: ~/.aws/amazonq/mcp.json β€” same JSON shape as Cursor above.

πŸ”’ Permission Profiles

Read-only  Safest
Query data, audit, no writes

Content Editor  Low risk
Blog posts, page content updates

Builder  Medium
Full page & theme management

Trusted  Full access
Complete site control, all 29 capabilities

⚠ Important: After adding or enabling new capabilities in AI Governor β†’ Permissions, always reload the MCP bridge in your AI client for new tools to appear.

Get in Touch