Connect in under 60 seconds
Choose your AI assistant below. One config line. OAuth handles the rest.
💬 Claude Desktop
- 1 Open Claude Desktop → Settings → Developer → Edit Config
- 2 Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"seo": {
"url": "https://mcp.yourdfyhub.com/seo"
}
}
} 💡 Restart Claude Desktop after saving. You'll be prompted to authorize via OAuth on first use.
⌨️ Claude Code
- 1 In your terminal, run:
claude mcp add seo --transport sse https://mcp.yourdfyhub.com/seo 💡 Claude Code will prompt you to authenticate via OAuth in your browser.
🖱️ Cursor
- 1 Open Cursor → Settings → MCP Servers → Add Server
- 2 Add the following configuration:
{
"mcpServers": {
"seo": {
"url": "https://mcp.yourdfyhub.com/seo"
}
}
} 💡 Cursor supports MCP natively. The OAuth flow will open in your browser.
🤖 ChatGPT
- 1 Open ChatGPT → Settings → Connected Apps → Add MCP Server
- 2 Enter the server URL:
https://mcp.yourdfyhub.com/seo 💡 ChatGPT MCP support is rolling out. Check that your account has the MCP integration enabled.
🏄 Windsurf
- 1 Open Windsurf → Settings → MCP → Add Server
- 2 Add the configuration:
{
"mcpServers": {
"seo": {
"serverUrl": "https://mcp.yourdfyhub.com/seo"
}
}
} 💡 Windsurf supports MCP natively with OAuth.
📘 VS Code + Copilot
- 1 Open VS Code → Settings (JSON) → Add to your settings:
"mcp": {
"servers": {
"seo": {
"type": "sse",
"url": "https://mcp.yourdfyhub.com/seo"
}
}
} 💡 Requires VS Code with GitHub Copilot and MCP support enabled.
🔌 Any MCP Client
- 1 Use these connection details with any MCP-compatible client:
Server URL: https://mcp.yourdfyhub.com/seo
Transport: SSE (Server-Sent Events)
Auth: OAuth 2.1 + PKCE (automatic) 💡 The server supports the standard MCP SSE transport with OAuth 2.1 PKCE authentication. No API keys needed.