# Social Neuron > AI-powered content creation platform with closed-loop learning. Create videos, images, and social posts with 35+ AI models, distribute to 3 live platforms (YouTube, TikTok, Instagram) with 4 more coming, and let performance data make your next batch smarter. ## Overview Social Neuron automates the complete content lifecycle: Ideation -> Creation -> Distribution -> Analytics -> Optimization. The closed-loop system analyzes content performance and feeds insights back into ideation, so content gets smarter over time. ## Core Features - **Ideation Station**: 4 modes (Research, Brainstorm, Campaign, Trends) for AI-powered content ideas - **Generative Studio**: Create videos and images with 35+ AI models (Easy Mode + Pro Mode) - **Storyboard Studio**: 4-phase guided video creation (Script -> Scenes -> Visuals -> Assembly) - **Avatar Lab**: AI talking-head videos with D-ID, HeyGen, Creatify, and fal.ai providers. Custom face upload, natural voice synthesis - **Content Repurpose**: Transform long videos into clips, blogs into scripts, highlights into posts - **Video Editor**: Trim, caption, add music, export in multiple formats and aspect ratios - **Distribution Hub**: One-click publish to 3 live platforms (YouTube, TikTok, Instagram) with auto-formatting. 4 more coming (Threads, Facebook, X, LinkedIn) - **Scheduling & Autopilot**: Schedule posts or let Autopilot maintain consistent publishing - **Analytics Dashboard**: Track views, engagement, and growth across all platforms - **Closed-Loop Learning**: Performance data feeds back into ideation for continuous improvement - **Brand Brain**: AI learns your voice, tone, audience, and visual style from your brand profile - **Automations**: Visual flow builder for custom content workflows on schedule or trigger ## AI Models ### Video Generation - Sora 2 / Sora 2 Pro (OpenAI) - Veo 3 Fast / Veo 3 Quality (Google) - Kling (Kuaishou) - Runway Aleph - Luma - Midjourney Video (image-to-video) ### Image Generation - Midjourney - Ideogram (text rendering) - Flux Pro / Flux Max - GPT-4o Image - Imagen 4 / Imagen 4 Fast (Google) - Seedream - Imagen 3 / Imagen 3 Pro (Google) ### Text & Ideation - Gemini 2.0 Flash / 2.5 Flash / 2.5 Pro (Google) - Gemini Thinking (chain-of-thought) - Claude Sonnet 4 / Claude Opus 4 (Anthropic) ## Pricing - **Starter**: $29/month -- 800 credits, 1 brand, 3 projects, 3 platforms, MCP API (read + analytics) - **Pro**: $79/month -- 2,000 credits, 3 brands, 10 projects, all platforms, priority support, full MCP API - **Team**: $199/month -- 6,500 credits, 10 brands, 50 projects, 10 team members, full MCP API + multi-user - Annual billing saves 20% - 1 credit = $0.01 USD - Credit add-ons: starting from $4.99 for 200 credits ## Credit Costs (Starting From) - Text & ideation: 1 credit ($0.01) - AI images: 15 credits ($0.15) - AI videos: 200 credits ($2.00) - Analysis & research: 2 credits ($0.02) ## Supported Platforms **Live**: YouTube, TikTok **Pending approval**: Instagram (Meta App Review submitted) **Coming soon**: X/Twitter, LinkedIn, Threads, Facebook, Bluesky ## Developer Platform (4 Integration Methods) Social Neuron provides 4 ways to integrate: MCP for AI agents, REST API for any language, CLI for automation, and SDK (coming soon). All methods share the same 52 tools, auth system, scopes, and credit pool. OAuth 2.0 + PKCE authentication. - **npm**: [@socialneuron/mcp-server](https://www.npmjs.com/package/@socialneuron/mcp-server) v1.6.0 - **MCP endpoint**: `https://mcp.socialneuron.com/mcp` (StreamableHTTP transport) - **REST API**: `https://mcp.socialneuron.com/v1/` (standard HTTP) - **OpenAPI spec**: `https://mcp.socialneuron.com/v1/openapi.json` - **GitHub**: [github.com/socialneuron/mcp-server](https://github.com/socialneuron/mcp-server) ### Quick Start — MCP (AI Agents) ``` claude mcp add --transport http socialneuron https://mcp.socialneuron.com/mcp \ --header "Authorization: Bearer ${SOCIALNEURON_API_KEY}" ``` ### Quick Start — REST API (Any Language) ``` curl -H "Authorization: Bearer $SOCIALNEURON_API_KEY" \ https://mcp.socialneuron.com/v1/credits curl -X POST -H "Authorization: Bearer $SOCIALNEURON_API_KEY" \ -H "Content-Type: application/json" \ -d '{"topic": "sustainable fashion", "platforms": ["instagram"]}' \ https://mcp.socialneuron.com/v1/content/generate ``` ### Quick Start — CLI (Terminal & CI/CD) ``` npx -y @socialneuron/mcp-server login --device npx @socialneuron/mcp-server sn system credits --json ``` ### REST API Endpoints - `GET /v1/tools` — List all 52 tools (filter by module, scope, keyword) - `POST /v1/tools/{name}` — Execute any tool by name (universal proxy) - `GET /v1/credits` — Credit balance - `GET /v1/brand` — Brand profile - `GET /v1/analytics` — Post analytics - `GET /v1/posts` — Recent posts - `POST /v1/content/generate` — Generate content - `POST /v1/content/video` — Generate video - `POST /v1/content/image` — Generate image - `GET /v1/content/status/{jobId}` — Check job status - `POST /v1/distribution/schedule` — Schedule post - `GET /v1/loop` — Growth loop summary ### Tool Categories (52 tools across 20 modules) - **Ideation** (3): generate_content, fetch_trends, adapt_content - **Ideation Context** (1): get_ideation_context - **Content** (6): generate_video, generate_image, check_status, create_storyboard, generate_voiceover, generate_carousel - **Distribution** (5): schedule_post, list_connected_accounts, list_recent_posts, find_next_slots, schedule_content_plan - **Analytics** (2): fetch_analytics, refresh_platform_analytics - **YouTube Analytics** (1): fetch_youtube_analytics - **Insights** (2): get_performance_insights, get_best_posting_times - **Brand** (4): extract_brand, get_brand_profile, save_brand_profile, update_platform_voice - **Comments** (5): list_comments, reply_to_comment, post_comment, moderate_comment, delete_comment - **Planning** (5): plan_content_week, save_content_plan, get_content_plan, update_content_plan, submit_content_plan_for_approval - **Plan Approvals** (3): create_plan_approvals, respond_plan_approval, list_plan_approvals - **Autopilot** (3): list_autopilot_configs, get_autopilot_status, update_autopilot_config - **Quality** (2): quality_check, quality_check_plan - **Credits** (2): get_credit_balance, get_budget_status - **Loop** (1): get_loop_summary - **Screenshots** (2): capture_app_page, capture_screenshot - **Remotion** (2): list_compositions, render_demo_video - **Extraction** (1): extract_url_content - **Usage** (1): get_mcp_usage - **Discovery** (1): search_tools ### Scopes - `mcp:full` — All operations - `mcp:read` — Read-only (analytics, insights, lists) - `mcp:write` — Content generation - `mcp:distribute` — Publishing and scheduling - `mcp:analytics` — Performance data - `mcp:comments` — Social engagement - `mcp:autopilot` — Automated scheduling ### Developer Pricing - **Free / Trial**: No MCP access (API keys cannot be generated) - **Starter**: $29/month — mcp:read + mcp:analytics, 800 credits - **Pro**: $79/month — All scopes, 2,000 credits - **Team**: $199/month — All scopes + multi-user, 6,500 credits ### Authentication - Device code flow (recommended): `npx -y @socialneuron/mcp-server login --device` - API key paste: `npx -y @socialneuron/mcp-server login --paste` ### Developer Links - [For Developers](https://socialneuron.com/for-developers) — Integration methods, tool categories, pricing - [REST API Docs](https://socialneuron.com/docs/rest-api) — Endpoint reference - [MCP API Docs](https://socialneuron.com/docs/developer-api) — MCP tool reference - [OpenAPI Spec](https://mcp.socialneuron.com/v1/openapi.json) — Machine-readable API spec - [npm Package](https://www.npmjs.com/package/@socialneuron/mcp-server) - [GitHub Repository](https://github.com/socialneuron/mcp-server) - [Developer Settings](https://socialneuron.com/settings/developer) — Generate API keys - [MCP Discovery](https://socialneuron.com/.well-known/mcp.json) ## Links - [Home](https://socialneuron.com/) - [Pricing](https://socialneuron.com/pricing) - [Demo](https://socialneuron.com/demo) - [Documentation](https://socialneuron.com/docs) - [About](https://socialneuron.com/about) - [Contact](https://socialneuron.com/contact) - [Blog](https://socialneuron.com/blog) - [Changelog](https://socialneuron.com/changelog) - [Integrations](https://socialneuron.com/integrations) - [Use Cases](https://socialneuron.com/use-cases) ### Feature Pages - [AI Video Generation](https://socialneuron.com/features/ai-video-generation) - [Brand Brain](https://socialneuron.com/features/brand-brain) - [Distribution](https://socialneuron.com/features/distribution) - [Analytics](https://socialneuron.com/features/analytics) - [Automations](https://socialneuron.com/features/automations) - [MCP API](https://socialneuron.com/features/mcp-api) ### Persona Pages - [For Founders](https://socialneuron.com/for-founders) - [For Creators](https://socialneuron.com/for-creators) - [For Agencies](https://socialneuron.com/for-agencies) - [For SaaS Builders](https://socialneuron.com/for-saas-builders) ### Comparison Pages - [Compare vs GenViral](https://socialneuron.com/compare/genviral) - [Compare vs Postiz](https://socialneuron.com/compare/postiz) - [Compare vs Post Bridge](https://socialneuron.com/compare/post-bridge) - [Compare vs Hootsuite](https://socialneuron.com/compare/hootsuite) - [Compare vs Typefully](https://socialneuron.com/compare/typefully) - [Compare vs Jasper](https://socialneuron.com/compare/jasper) - [Compare vs HeyGen](https://socialneuron.com/compare/heygen) - [Compare vs Opus Clip](https://socialneuron.com/compare/opus-clip) - [Compare vs Sprout Social](https://socialneuron.com/compare/sprout-social) - [Compare vs Creatify](https://socialneuron.com/compare/creatify) - [Compare vs Descript](https://socialneuron.com/compare/descript) - [Compare vs Buffer](https://socialneuron.com/compare/buffer) - [Compare vs Superscale](https://socialneuron.com/compare/superscale) - [Compare All](https://socialneuron.com/compare/all) ### Blog Posts - [AI Video Content Creation Guide 2026](https://socialneuron.com/blog/ai-video-content-creation-guide-2026) - [Automate Social Media Posting to 7 Platforms](https://socialneuron.com/blog/automate-social-media-posting-7-platforms) - [Social Neuron vs Jasper AI Video](https://socialneuron.com/blog/social-neuron-vs-jasper-ai-video) - [TikTok Shop Content Strategy at Scale](https://socialneuron.com/blog/tiktok-shop-content-strategy-ugc-scale) - [Closed-Loop Content System for Smarter Posts](https://socialneuron.com/blog/closed-loop-content-system-smarter-posts) - [Build an AI Content Pipeline with MCP](https://socialneuron.com/blog/build-ai-content-pipeline-mcp) - [What is MCP? Model Context Protocol Guide](https://socialneuron.com/blog/what-is-mcp-model-context-protocol-guide) - [Social Neuron vs Predis AI Comparison](https://socialneuron.com/blog/social-neuron-vs-predis-ai-comparison) - [Content Growth Loop Explained](https://socialneuron.com/blog/content-growth-loop-explained) - [AI Agents for Social Media 2026](https://socialneuron.com/blog/ai-agents-social-media-2026) - [How to Automate Social Media with Claude Code](https://socialneuron.com/blog/automate-social-media-claude-code-social-neuron) - [Social Neuron vs GenViral Comparison 2026](https://socialneuron.com/blog/social-neuron-vs-genviral-comparison-2026) - [Best AI Social Media Tools with MCP Server 2026](https://socialneuron.com/blog/best-ai-social-media-tools-mcp-server-2026) - [Social Neuron vs Postiz Comparison 2026](https://socialneuron.com/blog/social-neuron-vs-postiz-comparison-2026) - [Social Neuron vs Buffer Comparison 2026](https://socialneuron.com/blog/social-neuron-vs-buffer-comparison-2026) - [Social Neuron vs Hootsuite Comparison 2026](https://socialneuron.com/blog/social-neuron-vs-hootsuite-comparison-2026) - [Social Neuron vs Post Bridge Comparison 2026](https://socialneuron.com/blog/social-neuron-vs-post-bridge-comparison-2026) - [Social Neuron vs Superscale Comparison 2026](https://socialneuron.com/blog/social-neuron-vs-superscale-comparison-2026) ### Free Tools - [All Free Tools](https://socialneuron.com/tools) - [TikTok Caption Generator](https://socialneuron.com/tools/tiktok-caption-generator) - [Instagram Hashtag Generator](https://socialneuron.com/tools/instagram-hashtag-generator) - [YouTube Description Generator](https://socialneuron.com/tools/youtube-description-generator) - [Social Media Hook Generator](https://socialneuron.com/tools/hook-generator) - [LinkedIn Post Generator](https://socialneuron.com/tools/linkedin-post-generator) ### For AI Agents - [For Agents](https://socialneuron.com/for-agents) - [System Prompt](https://socialneuron.com/system-prompt.txt) - [MCP Discovery](https://socialneuron.com/.well-known/mcp.json) - [AI Plugin](https://socialneuron.com/.well-known/ai-plugin.json) ### Developer - [For Developers](https://socialneuron.com/for-developers) - [Developer Docs](https://socialneuron.com/docs/developer-api) ### Legal - [Privacy Policy](https://socialneuron.com/privacy) - [Terms of Service](https://socialneuron.com/terms) - [Security](https://socialneuron.com/security) - [Cookie Policy](https://socialneuron.com/cookies) - [Data Deletion](https://socialneuron.com/data-deletion) ## Full Documentation For comprehensive product docs, see [llms-full.txt](https://socialneuron.com/llms-full.txt)