- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Documented (README)
- !No description
git clone https://github.com/jalal1985khan/socialhive-mcp{
"mcpServers": {
"socialhive-mcp": {
"command": "node",
"args": ["/path/to/socialhive-mcp/dist/index.js"]
}
}
}MCP Servers overview
# SocialHive MCP Server
Official Model Context Protocol (MCP) server definition for **[SocialHive](https://socialhive.pro)**.
[](https://registry.modelcontextprotocol.io/v0.1/servers?search=socialhive)
[](https://registry.modelcontextprotocol.io/v0.1/servers?search=socialhive)
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_channels`<br>`get_connected_social_accounts` | Discover connected platforms (LinkedIn, X, Bluesky, Mastodon, Facebook, Instagram, Threads, TikTok, YouTube, Pinterest) and their target IDs. |
| **Publishing & Scheduling** | `create_post`<br>`schedule_post`<br>`publish_post`<br>`get_post`<br>`list_posts` | Draft, schedule (ISO 8601), immediately publish, or query status of social posts. |
| **AI Content Studio** | `generate_text`<br>`adapt_post`<br>`generate_image` | Generate platform-tailored copy, adapt posts to character limits, and generate brand images. |
| **Media Library** | `list_media`<br>`import_media` | Browse assets or ingest images/video from remote URLs into your SocialHive asset library. |
| **Curation & Sources** | `list_sources`<br>`search_source_items` | Query RSS feeds, newsletters, and ingested web content for fresh source material. |
| **Articles & Long-form** | `list_articles`<br>`get_article`<br>`create_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_workflows`<br>`list_node_types`<br>`propose_workflow` | Propose automated workflow graphs to Workflow Studio for human approval. |
---
## 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`
```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):
```json
{
"mcpServers": {
"socialhive": {
"type": "streamable-http",
"url": "https://platform.socialhive.pro/api/mcp",
"headers": {
"Authorization": "Bearer shp_YOUR_API_KEY"
}
}
}
}
```
### 3. Programmatic Usage (TypeScript SDK)
```typescript
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`
```bash
brew install mcp-publisher
```
### 2. Validate
```bash
mcp-publisher validate
```
### 3. Authenticate
- **Domain Verification** (for `pro.socialhive/platform`):
```bash
mcp-publisher login domain --domain socialhive.pro
```
- **GitHub Verification** (if using `io.github.<user>/socialhive`):
```bash
mcp-publisher login github
```
### 4. Publish
```bash
mcp-publisher publish
```
### 5. Check Registry Listing
```bash
curl -s "https://registry.modelcontextprotocol.io/v0.1/servers?search=socialhive"
```
What people ask about socialhive-mcp
What is jalal1985khan/socialhive-mcp?
+
jalal1985khan/socialhive-mcp is mcp servers for the Claude AI ecosystem with 0 GitHub stars.
How do I install socialhive-mcp?
+
You can install socialhive-mcp by cloning the repository (https://github.com/jalal1985khan/socialhive-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is jalal1985khan/socialhive-mcp safe to use?
+
Our security agent has analyzed jalal1985khan/socialhive-mcp and assigned a Trust Score of 77/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains jalal1985khan/socialhive-mcp?
+
jalal1985khan/socialhive-mcp is maintained by jalal1985khan. The last recorded GitHub activity is dated 2026-09-23, with 0 open issues.
Are there alternatives to socialhive-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy socialhive-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/jalal1985khan-socialhive-mcp)<a href="https://claudewave.com/repo/jalal1985khan-socialhive-mcp"><img src="https://claudewave.com/api/badge/jalal1985khan-socialhive-mcp" alt="Featured on ClaudeWave: jalal1985khan/socialhive-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
The fastest path to AI-powered full stack observability, even for lean teams.