Connecting to Sociality.io MCP
Use Sociality.io MCP as a remote HTTP MCP server.
ChatGPT
- Open the ChatGPT workspace menu, then go to Settings.
- Open Apps.
- Click Create app.
- Enter
Sociality MCPas the app name. - Set MCP Server URL to:
https://api.sociality.io/mcp - Set Authentication to
OAuth. - Open Advanced settings only if you need to review the discovered OAuth settings. If discovery works, keep the detected values.
- Check the confirmation box acknowledging the custom MCP server warning.
- Click Create.
- 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
- Open Claude, then go to Settings → Connectors.
- Click Add custom connector.
- Enter
Socialityas the connector name. - Enter:
https://api.sociality.io/mcp - Expand Advanced settings only if you want to inspect the discovered OAuth configuration.
- Click Add.
- 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"]
}
}
}