A social media automation suite that connects Claude to YouTube, TikTok, LinkedIn, and other platforms through 75+ MCP tools. You get content generation, post scheduling, analytics queries, and optimization workflows in one package. Ships as an npm stdio server, a hosted MCP endpoint at mcp.socialneuron.com, and a REST API with the same tool catalog. Includes CLI access for CI/CD pipelines. Requires a Social Neuron Pro subscription for read/analytics, Team or Agency tier for full posting and scheduling. Published with npm provenance attestation. Useful when you're building AI agents that need to create, distribute, and analyze social content across multiple platforms without stitching together separate APIs.
91 public MCP tools for AI-powered social media management. Create content, schedule posts, track analytics, and optimize performance — all from Claude Code or any MCP client.
The hosted endpoint needs no local npm process:
https://mcp.socialneuron.com/mcp
claude.ai/customize/connectors, choose Add custom connector, enter the URL above, then approve OAuth.claude mcp add --transport http socialneuron https://mcp.socialneuron.com/mcpcodex mcp add socialneuron --url https://mcp.socialneuron.com/mcp, then codex mcp login socialneuron if prompted. Codex Desktop reads the same MCP configuration.Authenticate first:
npx -y @socialneuron/mcp-server login --device
This opens your browser to authorize access. Requires a Social Neuron Pro plan or higher. See pricing.
Then add the local process to Claude Code:
claude mcp add socialneuron -- npx -y @socialneuron/mcp-server
Add to your claude_desktop_config.json:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.json{
"mcpServers": {
"socialneuron": {
"command": "npx",
"args": ["-y", "@socialneuron/mcp-server"]
}
}
}
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"socialneuron": {
"command": "npx",
"args": ["-y", "@socialneuron/mcp-server"]
}
}
}
Add to .cursor/mcp.json in your workspace:
{
"mcpServers": {
"socialneuron": {
"command": "npx",
"args": ["-y", "@socialneuron/mcp-server"]
}
}
}
Ask Claude: "What content should I post this week?" or "Schedule my latest video to YouTube and TikTok"
Ask Claude things like:
The hosted endpoint and npm stdio server each expose 91 public tools. Their surfaces differ intentionally: hosted HTTP includes the Content Calendar and Analytics Pulse MCP Apps, while stdio includes 2 local screen-capture tools instead. The live hosted count is published by the server card. A small set of internal service tools used by Social Neuron's own automation are registered but not part of the public surface.
MCP App support is host-dependent. Every App tool returns a normal structured/text fallback, so scheduling and analytics still work when a host does not render the interactive widget.
These tools are available to AI agents (Claude, Cursor, etc.) via the MCP protocol.
| Category | Tools | What It Does |
|---|---|---|
| Ideation | generate_content, fetch_trends, adapt_content, get_ideation_context | AI-powered content ideas and trend research |
| Content | generate_video, generate_image, generate_voiceover, generate_carousel, check_status, create_storyboard | Video, image, voiceover, and carousel creation with 20+ AI models |
| Distribution | schedule_post, reschedule_post, schedule_content_plan, find_next_slots, list_connected_accounts, list_recent_posts | Project-scoped multi-platform publishing, scheduling, rescheduling, and slot optimization |
| Analytics | fetch_analytics, refresh_platform_analytics | Performance tracking across all platforms |
| Insights | get_performance_insights, get_best_posting_times | Data-driven content optimization |
| Category | Tools | What It Does |
|---|---|---|
| Brand | extract_brand, get_brand_profile, save_brand_profile, update_platform_voice | Brand identity and voice management |
| Comments | list_comments, reply_to_comment, post_comment, moderate_comment, delete_comment | Social engagement management |
| Lifecycle | cancel_async_job, cancel_scheduled_post, delete_carousel, delete_content_plan, delete_autopilot_config | Project-scoped cancellation and cleanup; release acceptance requires the backend smoke evidence |
| Planning | plan_content_week, save_content_plan, get_content_plan, update_content_plan, submit_content_plan_for_approval | Content calendar and approval workflows |
| Plan Approvals | create_plan_approvals, respond_plan_approval, list_plan_approvals | Review and approve content plans |
| Autopilot | list_autopilot_configs, get_autopilot_status, update_autopilot_config | Automated content scheduling |
| Quality | quality_check, quality_check_plan | Pre-publish content validation |
| Credits | get_credit_balance, get_budget_status | Usage and budget tracking |
| Loop | get_loop_summary | Closed-loop optimization feedback |
| Category | Tools | What It Does |
|---|---|---|
| Extraction | extract_url_content | Extract content from URLs, YouTube, articles |
| Screenshots | capture_app_page, capture_screenshot | Visual documentation and monitoring |
| Remotion | list_compositions, render_demo_video | Programmatic video rendering |
| Usage | get_mcp_usage | API usage monitoring |
| YouTube | fetch_youtube_analytics | YouTube-specific deep analytics |
| Discovery | search_tools | Find tools by keyword with progressive detail levels (saves 98% tokens vs loading all tools) |
| App | Open tool | Purpose |
|---|---|---|
| Content Calendar | open_content_calendar | Project-scoped calendar, quick create, and drag-to-reschedule |
| Analytics Pulse | open_analytics_pulse | Project-scoped KPI, platform-mix, and top-post performance dashboard |
Apps render only in MCP hosts that support the MCP Apps extension. All underlying data and write operations remain ordinary scoped tools, so hosts without interactive UI can use the same workflows through text/tool calls.
Three auth methods, in order of recommendation:
npx -y @socialneuron/mcp-server login --device
Opens browser, you approve, CLI receives API key automatically.
npx -y @socialneuron/mcp-server login
Browser-based OAuth flow.
npx -y @socialneuron/mcp-server login --paste
Generate a key at socialneuron.com/settings/developer, paste it in.
Keys are stored in your OS keychain (macOS Keychain, Linux secret-tool) or a file fallback created with owner-only permissions where the operating system supports them.
Windows users: The file fallback (
~/.config/social-neuron/credentials.json) does not have strong permission enforcement on NTFS. For production use on Windows, set theSOCIALNEURON_API_KEYenvironment variable instead.
MCP/API access requires a Pro plan or higher:
| Plan | Price | Credits/mo | MCP/API Access |
|---|---|---|---|
| Free | $0 | 50 | — |
| Starter | $19/mo | 500 | — |
| Pro | $49/mo | 1,500 | MCP/API: Read + Analytics + Write + Distribute |
| Team | $99/mo | 3,500 | Full MCP/API + 5 keys |
| Agency | $249/mo | 10,000 | Full MCP/API + 20 keys |
Sign up at socialneuron.com/pricing.
Each API key inherits scopes from your plan. Tools require specific scopes to execute.
| Scope | What you can do |
|---|---|
mcp:read | Analytics, insights, brand profiles, content plans, quality checks, screenshots, usage stats, credit balance |
mcp:write | Generate content (video, image, voiceover, carousel), create storyboards, save brand profiles, plan content |
mcp:distribute | Schedule posts, publish content plans |
mcp:analytics | Refresh analytics, YouTube deep analytics |
mcp:comments | List, reply, post, moderate, delete comments |
mcp:autopilot | Configure and monitor automated scheduling |
mcp:full | All of the above |
These commands run directly in your terminal — no AI agent needed. Useful for scripts, CI/CD, and quick checks.
After global install (
npm i -g @socialneuron/mcp-server), usesocialneuron-mcpdirectly. Otherwise, prefix withnpx @socialneuron/mcp-server.
# Auth
socialneuron-mcp login [--device|--paste]
socialneuron-mcp logout
# Deterministic CLI (no LLM)
socialneuron-mcp sn publish --media-url <url> --caption <text> --platforms <list> --confirm
socialneuron-mcp sn status --job-id <id>
socialneuron-mcp sn posts --days 7 --platform youtube
socialneuron-mcp sn refresh-analytics
socialneuron-mcp sn preflight --check-urls
socialneuron-mcp sn oauth-health --json
socialneuron-mcp sn oauth-refresh --platform instagram
socialneuron-mcp sn quality-check --content "your text here"
socialneuron-mcp sn autopilot
socialneuron-mcp sn usage
socialneuron-mcp sn loop
socialneuron-mcp sn credits
# Agent-native CLI v2
socialneuron-mcp sn tools [--module ideation] [--scope mcp:write] # List/filter available tools
socialneuron-mcp sn info # Version, auth, credits, tool count
socialneuron-mcp sn plan list|view|approve # Content plan management
socialneuron-mcp sn preset list|show|save|delete # Platform presets (6 built-in)
# Interactive REPL
socialneuron-mcp repl
# Add --json to any command for machine-readable output
The full autonomous content loop using MCP tools:
get_loop_summary — assess project state (content count, scheduled posts, insights)plan_content_week — generate a content plan based on insights and trendsgenerate_video / generate_image — create media assets from the plancheck_status — poll async jobs until assets are readyschedule_post — distribute content to connected platformsrefresh_platform_analytics — trigger a manual analytics refreshget_performance_insights — read what worked and what didn'tEach iteration produces smarter content as performance data feeds back into the planning step.
DO_NOT_TRACK=1 to disable anonymous usage telemetrySee SECURITY.md for our vulnerability disclosure policy and credential safety details.
This package collects operational usage metrics (tool name, duration, success/failure) to improve reliability. It does not send tool inputs, outputs, generated content, API keys, emails, or upstream error bodies. When a deployment configures POSTHOG_PSEUDONYMIZATION_KEY, the user identifier is HMAC-pseudonymized; otherwise an ephemeral per-process key prevents stable cross-session correlation.
To disable: Set DO_NOT_TRACK=1 or SOCIALNEURON_NO_TELEMETRY=1 in your environment.
No personal content, API keys, or request payloads are ever collected.
See the examples repo for prompt-driven workflow templates:
MIT - see LICENSE
SOCIALNEURON_API_KEY*secretYour Social Neuron API key. Generate at https://socialneuron.com/settings/developer
io.github.socialapishub/social-media-api
io.github.xpaysh/social-media
com.thenextgennexus/youtube-media-mcp-server
io.github.ludmila-omlopes/youtube-video-analyzer
csoai-org/social-media-ai-mcp
com.ezbizservices/social-media