MCP Quickstart
The Social Neuron MCP server gives AI agents access to 75 tools for content creation, scheduling, analytics, and optimization. This guide gets you connected in under 2 minutes.
Prerequisites
- A Social Neuron account with a paid plan (Starter or above)
- Node.js 20+ installed
- An MCP-compatible client (Claude Code, Claude Desktop, VS Code, or Cursor)
Step 1: Authenticate
Code
This opens your browser to authorize access. After you approve, the CLI receives your API key automatically and stores it in your OS keychain.
Step 2: Add to Your Client
Claude Code
Code
Claude Desktop
Add to your claude_desktop_config.json:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Code
VS Code
Add to .vscode/mcp.json in your workspace:
Code
Cursor
Add to .cursor/mcp.json in your workspace:
Code
Step 3: Start Using
Ask Claude things like:
- "What content should I post this week?"
- "Generate 5 content ideas about sustainable fashion for Gen Z"
- "Schedule my latest video to YouTube and TikTok"
- "Show me my best-performing content this month"
- "Check my analytics and suggest improvements"
CLI Reference
After global install (npm i -g @socialneuron/mcp-server), you can use the socialneuron-mcp command directly. Otherwise, prefix with npx @socialneuron/mcp-server.
Code
Add --json to any command for machine-readable output.
Troubleshooting
Authentication fails
Make sure you have a paid plan (Starter or above). Free and Trial plans do not include API access.
"Command not found" after install
Use npx @socialneuron/mcp-server instead of socialneuron-mcp, or install globally with npm i -g @socialneuron/mcp-server.
Windows credential storage
The file fallback (~/.config/social-neuron/credentials.json) does not have strong permission enforcement on NTFS. For production use on Windows, set the SOCIALNEURON_API_KEY environment variable instead.
Next Steps
- Authentication Guide -- OAuth2, scopes, and security details
- Credit System -- How credits work and cost per operation
- Workflow Recipes -- Common multi-step automation patterns
- MCP Tools API -- Full tool reference with parameters and schemas