Ayrshare MCP Server — Hosted Api Connectors Integration
MCP Server language Hosted language PublicPost, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.
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.
{
"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:
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.
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
- Go to aerostack.dev → Add MCP
- Search "Ayrshare" and add to your workspace
- Add your
AYRSHARE_API_KEYin the secrets panel - 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.
_ping #1 Verify Ayrshare credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.
create_post #2 Create and publish or schedule a social media post across up to 13 platforms simultaneously. Supports text, images, and videos.
get_post #3 Get details and status of a specific post by its Ayrshare ID.
delete_post #4 Delete a post from social platforms. Works for scheduled and most published posts.
delete_all_scheduled #5 Delete ALL scheduled (pending) posts. Use with caution.
get_history #6 Get post history — all posts with their status and platform results.
get_analytics #7 Get engagement analytics for a specific post (likes, shares, comments, impressions).
get_comments #8 Get comments on a specific post from supported platforms.
post_comment #9 Add a comment/reply to an existing post on supported platforms (Facebook, Instagram, LinkedIn, YouTube).
auto_hashtags #10 Generate trending, relevant hashtags for a given post text.
shorten_link #11 Shorten a URL using Ayrshare link shortener.
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-ayrshare
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in API Connectors
Browse API Connectors MCPs →Aerostack Registry
by @aerostack
Discover and invoke any MCP, Function, or Skill published to the Aerostack marketplace — the universal AI capability hub.
Algolia
by @aerostack
Search indexes, manage records, browse data, and configure ranking in Algolia — AI-native instant search access.
Arangodb
by @aerostack
Query documents, run AQL, traverse graphs, and manage collections in your ArangoDB database — AI-native multi-model database access.
Basecamp
by @aerostack
Manage projects, to-dos, messages, schedules, and campfire chats in Basecamp — AI-native project management.
Bigquery
by @aerostack
Run SQL queries, list datasets and tables, inspect schemas, and export results from Google BigQuery — AI-native data warehouse access.
Cal Com
by @aerostack
Book meetings, check availability, and manage your entire scheduling workflow programmatically via Cal.com.
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.