Back to Browse

Fastsocial MCP Server

Developer ToolsModerate6.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Schedule and manage social media posts across 7 platforms directly from Claude.

About

Schedule and manage social media posts across 7 platforms directly from Claude.

Security Report

6.2
Moderate6.2Moderate Risk

This is a well-structured MCP server for the FastSocial API with proper authentication and reasonable permissions. The code correctly retrieves the API key from environment variables, validates all tool inputs via schema, and makes authenticated requests to a legitimate third-party API. No security vulnerabilities, malicious patterns, or credential leaks were identified. Minor code quality observations around error handling and input validation do not materially impact security. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 2 high severity).

3 files analyzed · 5 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.

env_vars

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

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Your FastSocial API key (get one at fastsocial.ai under Settings → API Keys)Required

Environment variable: FASTSOCIAL_API_KEY

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-socialappsceduler-eng-fastsocial": {
      "env": {
        "FASTSOCIAL_API_KEY": "your-fastsocial-api-key-here"
      },
      "args": [
        "-y",
        "fastsocial-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

FastSocial MCP Server

Schedule and manage social media posts across Facebook, Instagram, Twitter/X, LinkedIn, YouTube, TikTok, and Pinterest — directly from Claude.

Tools

ToolDescription
get_account_infoView account details, connected platforms, and plan info
schedule_postSchedule a post to any connected platform
list_postsList posts filtered by status or platform
get_postGet a single post by ID
update_postEdit a post's text, scheduled time, or status
delete_postDelete a post
get_analyticsView post counts and platform breakdown
list_connected_platformsSee all connected social accounts
list_clientsList clients (for reseller accounts)
list_mediaBrowse the media library

Setup

1. Get your FastSocial API Key

  1. Log in to fastsocial.ai
  2. Go to Settings → API Keys
  3. Create a new API key with the scopes you need:
    • posts:read — read posts
    • posts:write — create/edit/delete posts
    • analytics:read — view analytics
    • platforms:read — view connected platforms

2. Configure Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "fastsocial": {
      "command": "npx",
      "args": ["-y", "fastsocial-mcp-server"],
      "env": {
        "FASTSOCIAL_API_KEY": "fsk_your_api_key_here"
      }
    }
  }
}

3. Run locally (alternative)

git clone https://github.com/fastsocial/mcp-server
cd mcp-server
npm install
FASTSOCIAL_API_KEY=fsk_your_key npm start

Example prompts

  • "Schedule a post to Instagram for tomorrow at 9am saying 'Happy Monday!'"
  • "Show me all my failed posts from last week"
  • "What's my post count breakdown by platform?"
  • "Update post abc123 to be scheduled for next Friday at noon"
  • "List all my draft posts"

Authentication

All requests use your FastSocial API key passed as a Bearer token. Keys are scoped — a posts:read-only key cannot create or delete posts.

License

MIT

Reviews

No reviews yet

Be the first to review this server!