Skip to main content
Glama

SocialHive MCP Server

Official Model Context Protocol (MCP) server definition for SocialHive.

MCP Registry Status

SocialHive enables AI assistants (Claude, Cursor, Windsurf, Cline, ChatGPT, and custom LLM agents) to draft, schedule, and publish content across social platforms, generate AI-powered text and image variations, inspect performance analytics, and automate social workflows.

  • Official Registry Identifier: pro.socialhive/platform

  • Remote Streamable HTTP Endpoint: https://platform.socialhive.pro/api/mcp

  • Supported Transports: Streamable HTTP (POST), Server-Sent Events (GET with Accept: text/event-stream)

  • Protocol Versions: 2026-07-28, 2025-11-25, 2025-06-18, 2025-03-26, 2024-11-05


Capabilities & Available Tools

SocialHive exposes workspace-scoped tools that respect your team roles and workspace limits:

Category

Tools

Description

Channels & Accounts

list_channelsget_connected_social_accounts

Discover connected platforms (LinkedIn, X, Bluesky, Mastodon, Facebook, Instagram, Threads, TikTok, YouTube, Pinterest) and their target IDs.

Publishing & Scheduling

create_postschedule_postpublish_postget_postlist_posts

Draft, schedule (ISO 8601), immediately publish, or query status of social posts.

AI Content Studio

generate_textadapt_postgenerate_image

Generate platform-tailored copy, adapt posts to character limits, and generate brand images.

Media Library

list_mediaimport_media

Browse assets or ingest images/video from remote URLs into your SocialHive asset library.

Curation & Sources

list_sourcessearch_source_items

Query RSS feeds, newsletters, and ingested web content for fresh source material.

Articles & Long-form

list_articlesget_articlecreate_article

Manage long-form content, blog posts, and newsletter drafts.

Analytics & Insights

get_analytics

Retrieve engagement summaries, top-performing posts, and AI-driven growth recommendations.

Workflows

list_workflowslist_node_typespropose_workflow

Propose automated workflow graphs to Workflow Studio for human approval.


Related MCP server: YaparAI Enterprise MCP Server

Authentication

All requests to the SocialHive MCP server require a workspace API key:

  • Header: Authorization: Bearer shp_<your_api_key>

  • You can generate your API key in SocialHive Dashboard > Settings > API Keys (https://socialhive.pro/app/settings/api).


Client Setup

1. Claude Desktop (claude_desktop_config.json)

Add the following to your Claude Desktop configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "socialhive": {
      "url": "https://platform.socialhive.pro/api/mcp",
      "headers": {
        "Authorization": "Bearer shp_YOUR_API_KEY"
      }
    }
  }
}

2. Cursor / Windsurf / Cline / VS Code

In your client's MCP configuration file (e.g. .cursor/mcp.json or Cline MCP settings):

{
  "mcpServers": {
    "socialhive": {
      "type": "streamable-http",
      "url": "https://platform.socialhive.pro/api/mcp",
      "headers": {
        "Authorization": "Bearer shp_YOUR_API_KEY"
      }
    }
  }
}

3. Programmatic Usage (TypeScript SDK)

import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { StreamableHttpClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js";

const transport = new StreamableHttpClientTransport(
  new URL("https://platform.socialhive.pro/api/mcp"),
  {
    headers: {
      Authorization: "Bearer shp_YOUR_API_KEY",
    },
  }
);

const client = new Client({ name: "my-agent", version: "1.0.0" }, { capabilities: {} });
await client.connect(transport);

const tools = await client.listTools();
console.log("Connected to SocialHive MCP! Available tools:", tools.tools.map(t => t.name));

Publishing to the Official MCP Registry

1. Install mcp-publisher

brew install mcp-publisher

2. Validate

mcp-publisher validate

3. Authenticate

  • Domain Verification (for pro.socialhive/platform):

    mcp-publisher login domain --domain socialhive.pro
  • GitHub Verification (if using io.github.<user>/socialhive):

    mcp-publisher login github

4. Publish

mcp-publisher publish

5. Check Registry Listing

curl -s "https://registry.modelcontextprotocol.io/v0.1/servers?search=socialhive"

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Enables AI assistants to schedule and publish social media posts to platforms like Instagram, TikTok, YouTube, LinkedIn, Facebook, X, Threads, and Pinterest using natural language.
    33
    118 npm
    3
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI assistants to manage social media accounts and CRM operations, including posting, analytics, inbox management, and customer management.
    22
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables posting and managing content across 13+ social media platforms with scheduling, analytics, AI generation, and approval workflows through natural language.
    2
    MIT