Cursor
Connect Socioi MCP to Cursor with an API key.
Cursor typically uses a static API key header (no OAuth browser flow).
1. Create an API key
https://socioi.com/settings/developers → Access → Generate si_live_…
2. Add MCP server
In Cursor MCP settings (mcp.json or UI), add:
{
"mcpServers": {
"socioi": {
"url": "https://socioi.com/mcp/mcp",
"headers": {
"Authorization": "Bearer si_live_YOUR_KEY"
}
}
}
}
The same snippet is shown under Developers → MCP in the app.
3. Try it
Ask the agent:
Using Socioi, list my connected channels and draft a post for tomorrow morning.
Notes
- Rotating the API key requires updating the Cursor config
- Local dev can use
http://localhost:4000/mcpwith the same header - Some Cursor builds prefer OAuth discovery over static
headers. If tools fail with auth errors after pasting the snippet, update Cursor, or try the AI Agents CLI / Claude & ChatGPT OAuth path instead - Prefer
Authorization: Bearer …; baresi_live_…is also accepted by the server