Aerostack
electrical_services

Ayrshare MCP Server — Hosted Api Connectors Integration

MCP Server language Hosted language Public

Post, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.

aerostack @aerostack verified
v0.1.0 MIT Updated Jun 28, 2026
robot_2

Use with AI AssistantsMCP

Connect Claude, Cursor, or any MCP-compatible client — then call tools directly

① Add This MCP Server

Paste into your AI client config — then all its tools are available instantly.

.claude/mcp.json
{
  "mcpServers": {
    "ayrshare": {
      "url": "https://mcp.aerostack.dev/s/aerostack/mcp-ayrshare",
      "headers": {
        "Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
      }
    }
  }
}

Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.

② Call a Tool

Ask your AI assistant to call a specific tool, or send raw JSON-RPC:

+5 more

Natural Language Prompt

“Use the _ping tool to verify ayrshare credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials

Using a Workspace?

Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.

add_circleAdd to Workspace

description Overview

mcp-ayrshare — Universal Social Media API MCP Server

Post, schedule, and analyze across 13 social platforms from a single MCP.

Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-ayrshare

What You Can Do

  • Post and schedule to 13 platforms simultaneously
  • Get engagement analytics (likes, shares, impressions)
  • Manage comments and replies
  • Auto-generate trending hashtags
  • Shorten links
  • View full post history

Supported Platforms

Facebook, Instagram, X/Twitter, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business Profile

Available Tools

Tool Description
create_post Create and publish or schedule a post across platforms
get_post Get post details and status
delete_post Delete a post from social platforms
delete_all_scheduled Delete all pending scheduled posts
get_history Get post history with status and results
get_analytics Get engagement metrics for a post
get_comments Get comments on a post
post_comment Reply to a post on supported platforms
auto_hashtags Generate trending hashtags for text
shorten_link Shorten a URL

Configuration

Variable Required Description
AYRSHARE_API_KEY Yes Ayrshare API key — get from ayrshare.com dashboard

Quick Start

  1. Go to aerostack.dev → Add MCP
  2. Search "Ayrshare" and add to your workspace
  3. Add your AYRSHARE_API_KEY in the secrets panel
  4. Start posting across all your social platforms

Example: Schedule a Multi-Platform Post

{
  "tool": "create_post",
  "arguments": {
    "post": "Excited to announce our new feature! Check it out at example.com",
    "platforms": ["twitter", "linkedin", "facebook", "instagram", "threads"],
    "media_urls": ["https://example.com/announcement.jpg"],
    "schedule_date": "2026-03-20T09:00:00Z",
    "auto_hashtag": true
  }
}

Pricing Note

Ayrshare offers a free tier (20 posts/month). For higher volume, see ayrshare.com/pricing.

X/Twitter note: After March 31, 2026, X/Twitter operations require your own OAuth 1.0a credentials linked via the Ayrshare dashboard.

terminal Tools (11)

Available tools on this MCP server. Each tool can be called directly from any AI agent.

terminal
_ping #1

Verify Ayrshare credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.

terminal
create_post #2

Create and publish or schedule a social media post across up to 13 platforms simultaneously. Supports text, images, and videos.

terminal
get_post #3

Get details and status of a specific post by its Ayrshare ID.

terminal
delete_post #4

Delete a post from social platforms. Works for scheduled and most published posts.

terminal
delete_all_scheduled #5

Delete ALL scheduled (pending) posts. Use with caution.

terminal
get_history #6

Get post history — all posts with their status and platform results.

terminal
get_analytics #7

Get engagement analytics for a specific post (likes, shares, comments, impressions).

terminal
get_comments #8

Get comments on a specific post from supported platforms.

terminal
post_comment #9

Add a comment/reply to an existing post on supported platforms (Facebook, Instagram, LinkedIn, YouTube).

terminal
auto_hashtags #10

Generate trending, relevant hashtags for a given post text.

terminal
shorten_link #11

Shorten a URL using Ayrshare link shortener.

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category API Connectors
terminal Tools 11

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-ayrshare

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in API Connectors

Browse API Connectors MCPs →

Frequently asked questions

What is the Ayrshare MCP server and what can it do? +

The Ayrshare MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `create_post`, `get_post`, `delete_post`, `delete_all_scheduled`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.

Is the Ayrshare MCP server hosted, or do I have to run it myself? +

It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.

Which AI agents and editors can use the Ayrshare MCP server? +

Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Ayrshare MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.

How do I install the Ayrshare MCP server in Claude Desktop? +

Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-ayrshare": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-ayrshare"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.

How do I use the Ayrshare MCP server in Cursor? +

In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-ayrshare", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-ayrshare"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.

Does Ayrshare MCP require authentication? +

Yes. Ayrshare requires authentication. Check the MCP's documentation for the required credentials.