Back to Browse

Publora MCP Server

by Publora
Developer ToolsUse Caution4.8MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Schedule and publish to 10 social platforms: LinkedIn, X, Instagram, TikTok, YouTube, and more.

About

Schedule and publish to 10 social platforms: LinkedIn, X, Instagram, TikTok, YouTube, and more.

Remote endpoints: streamable-http: https://mcp.publora.com/mcp

Security Report

4.8
Use Caution4.8High Risk

The Publora MCP server is well-structured with proper authentication requirements and reasonable permission scoping. API keys are correctly extracted from headers (not logged or hardcoded), and the server implements session management with TTL. Minor code quality issues include broad exception handling and lack of input sanitization in some tool descriptions, but these do not introduce security vulnerabilities. Permissions align with the server's purpose of managing social media scheduling via the Publora API. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity).

5 files analyzed · 8 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

process_spawn

Check that this permission is expected for this type of plugin.

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

Publora MCP Server

smithery badge

Official Model Context Protocol (MCP) server for Publora — control your social media scheduling directly from AI assistants like Claude, Cursor, and any MCP-compatible client.

No coding required. Just describe what you want in plain English:

"Schedule a LinkedIn post for tomorrow at 9am" "How did my last post perform?" "Post this to Twitter and LinkedIn"

Quick Start

Remote Server (Recommended)

Publora hosts an MCP server at mcp.publora.com — no installation needed.

1. Get your API key at publora.com → Settings → API

2. Add to your MCP client:

{
  "mcpServers": {
    "publora": {
      "type": "http",
      "url": "https://mcp.publora.com",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

3. Restart your client and start talking to your AI about social media!


Client Setup

Edit ~/.claude.json or create .mcp.json in your project:

{
  "mcpServers": {
    "publora": {
      "type": "http",
      "url": "https://mcp.publora.com",
      "headers": {
        "Authorization": "Bearer sk_YOUR_API_KEY"
      }
    }
  }
}

Restart Claude Code. Verify with /mcp command.

  1. Open Claude Desktop → SettingsDeveloperEdit Config
  2. Add the Publora server (same JSON as above)
  3. Restart Claude Desktop

Create .cursor/mcp.json in your project:

{
  "mcpServers": {
    "publora": {
      "type": "http",
      "url": "https://mcp.publora.com",
      "headers": {
        "Authorization": "Bearer sk_YOUR_API_KEY"
      }
    }
  }
}

Run your own instance:

git clone https://github.com/publora/mcp-server.git
cd mcp-server
npm install
PUBLORA_API_URL=https://api.publora.com npm start

Server runs on http://localhost:3100


Available Tools (18)

Posts

ToolDescription
list_postsList posts with filters (status, platform, dates)
create_postSchedule a post to one or more platforms
get_postGet post details and status
update_postReschedule or change status
delete_postDelete a post
get_upload_urlGet presigned URL for media upload

Connections

ToolDescription
list_connectionsList connected social accounts

LinkedIn Analytics

ToolDescription
linkedin_post_statsPost engagement metrics
linkedin_account_statsAccount-level statistics
linkedin_followersFollower count and growth
linkedin_profile_summaryCombined profile overview
linkedin_create_reactionReact to a post
linkedin_delete_reactionRemove a reaction
linkedin_create_commentPost a comment on a LinkedIn post
linkedin_delete_commentDelete a comment

Workspace (B2B)

ToolDescription
list_workspace_usersList team members
create_workspace_userAdd a user
workspace_detach_userRemove a user

Example Conversations

Schedule a post:

You: Schedule "Excited about our product launch!" to LinkedIn for tomorrow 9am AI: Done! Post scheduled for tomorrow at 9am EST.

Cross-platform posting:

You: Post "We're hiring!" to all my accounts AI: Published to Twitter, LinkedIn, and Bluesky.

Check analytics:

You: How did my LinkedIn posts perform this week? AI: 5 posts, 4,230 impressions, 89 reactions. Best: Monday's update (1,850 impressions).

Content calendar:

You: What do I have scheduled for next week? AI: 5 posts: Mon LinkedIn, Tue Twitter+LinkedIn, Wed LinkedIn...


Who Is This For?

  • Marketers — manage campaigns and check analytics via AI chat
  • Content creators — schedule posts without switching apps
  • Business owners — delegate social media tasks to AI
  • Developers — integrate Publora into AI-powered workflows

Supported Platforms

Twitter/X · LinkedIn · Instagram · Threads · TikTok · YouTube · Facebook · Bluesky · Mastodon · Telegram


Authentication

Use your Publora API key via:

  • Authorization: Bearer sk_... (recommended)
  • x-publora-key: sk_...

Get your key: publora.com → Settings → API


Verification

# Health check
curl https://mcp.publora.com/health

# Test MCP handshake
curl -X POST https://mcp.publora.com \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Authorization: Bearer sk_YOUR_API_KEY" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}'

Documentation


Development

# Install
npm install

# Run locally
PUBLORA_API_URL=https://api.publora.com npm start

# Run tests
npm test

Environment Variables

VariableDefaultDescription
PORT3100Server port
PUBLORA_API_URLhttps://api.publora.comBackend API URL

Related


License

MIT


Publora — Affordable social media API starting at $5.40/month

Reviews

No reviews yet

Be the first to review this server!