Docs/connecting-to-sociality-mcp

Docs

Connecting to Sociality.io MCP

Use Sociality.io MCP as a remote HTTP MCP server.

ChatGPT

  1. Open the ChatGPT workspace menu, then go to Settings.
  2. Open Apps.
  3. Click Create app.
  4. Enter Sociality MCP as the app name.
  5. Set MCP Server URL to: https://api.sociality.io/mcp
  6. Set Authentication to OAuth.
  7. Open Advanced settings only if you need to review the discovered OAuth settings. If discovery works, keep the detected values.
  8. Check the confirmation box acknowledging the custom MCP server warning.
  9. Click Create.
  10. Complete the Sociality.io OAuth flow when ChatGPT opens the authorization step.

After setup, the app should appear in the enabled apps list.

Availability can depend on your ChatGPT plan, workspace settings, and rollout status for custom MCP apps.

Claude

  1. Open Claude, then go to Settings → Connectors.
  2. Click Add custom connector.
  3. Enter Sociality as the connector name.
  4. Enter: https://api.sociality.io/mcp
  5. Expand Advanced settings only if you want to inspect the discovered OAuth configuration.
  6. Click Add.
  7. When the Sociality.io authorization page opens, click Authorize to grant access.

After authorization, the Sociality connector should appear in the connectors list and be ready to configure or use.

Claude Code CLI

If you are using terminal-based Claude Code instead of the connector UI, run:

claude mcp add --transport http sociality https://api.sociality.io/mcp

Then run /mcp in Claude Code and complete OAuth.

Codex

Primary setup:

codex mcp add --url https://api.sociality.io/mcp sociality

OAuth is completed on first use if the client prompts for authentication.

Other Tools

If your MCP client supports remote HTTP MCP servers, use:

{
  "mcpServers": {
    "sociality": {
      "url": "https://api.sociality.io/mcp"
    }
  }
}

If your client does not support remote HTTP MCP directly, use an STDIO bridge such as mcp-remote:

{
  "mcpServers": {
    "sociality": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://api.sociality.io/mcp"]
    }
  }
}