Skip to content

ChatGPT

import { Aside } from ‘@astrojs/starlight/components’;

ChatGPT Business supports MCP directly. Use the same endpoint as Claude:

{
"mcpServers": {
"my-wordpress-site": {
"url": "https://YOUR-SITE.com/wp-json/mcpwp/v1/mcp",
"headers": {
"X-API-Key": "mcpwp_YOUR_KEY"
}
}
}
}

Recommended path — full tool access, same as Claude Desktop. Header-based auth keeps the key out of the URL — the more secure connect method available today.

Once connected, call wp_introspect first, then wp_onboard for a full site briefing before making changes.


For ChatGPT Plus users without a Business plan, MCPWP also ships an OpenAPI 3.0 schema. Use it to connect as a custom GPT.

  1. Go to chat.openai.com/gptsCreate a GPT
  2. In the Configure tab → Add actions
  3. Import schema from:
https://YOUR-SITE.com/wp-json/mcpwp/v1/openapi.json

The schema endpoint is public — no API key needed to read it.

  1. Set authentication:

    • Type: API Key
    • Auth type: Custom header
    • Header name: X-API-Key
    • Value: your mcpwp_ key
  2. Save and test — the GPT will use the REST endpoints directly.