Typefully MCP Server — Hosted Api Connectors Integration
MCP Server language Hosted language PublicWrite, schedule, and manage social media drafts across X/Twitter, LinkedIn, Threads, Bluesky, and Mastodon — with queue management and analytics.
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": {
"typefully": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-typefully",
"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 typefully 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-typefully — Social Media Drafts & Scheduling MCP Server
Write, schedule, and manage social media drafts across X/Twitter, LinkedIn, Threads, Bluesky, and Mastodon.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-typefully
What You Can Do
- Create drafts and threads (multi-tweet) for X/Twitter
- Schedule posts to LinkedIn, Threads, Bluesky, Mastodon
- Manage a posting queue with automatic time slots
- View post analytics and engagement metrics
- Organize content with tags
Available Tools
| Tool | Description |
|---|---|
get_me |
Get authenticated user details |
list_social_sets |
List connected account groups |
get_social_set |
Get social set details + connected platforms |
create_draft |
Create a draft — save, schedule, or add to queue |
list_drafts |
List drafts filtered by status |
get_draft |
Get full draft details |
update_draft |
Update content, schedule, or platforms |
delete_draft |
Delete a draft |
get_queue |
View upcoming queue slots + scheduled drafts |
get_queue_schedule |
View queue schedule rules (days/times) |
list_tags |
List content organization tags |
get_analytics |
Get post performance metrics by platform |
Configuration
| Variable | Required | Description |
|---|---|---|
TYPEFULLY_API_KEY |
Yes | Typefully API key — generate from Settings in your Typefully account |
Quick Start
- Go to aerostack.dev → Add MCP
- Search "Typefully" and add to your workspace
- Add your
TYPEFULLY_API_KEYin the secrets panel - Start creating and scheduling posts from any AI agent or bot
Example: Schedule a Thread
{
"tool": "create_draft",
"arguments": {
"social_set_id": "ss_abc123",
"content": "Thread about AI automation:\n\n---\n\nFirst, let me explain why AI agents are changing how we work.\n\n---\n\nSecond, here are 3 tools every developer should know about.\n\n---\n\nFinally, the future: agents that schedule your social media for you.",
"platforms": ["twitter", "linkedin"],
"schedule_date": "2026-03-20T09:00:00Z"
}
}
Platforms Supported
| Platform | Features |
|---|---|
| X/Twitter | Posts, threads, queue, analytics |
| Posts, scheduling, analytics | |
| Threads | Posts, scheduling |
| Bluesky | Posts, scheduling |
| Mastodon | Posts, scheduling |
terminal Tools (13)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
_ping #1 Verify Typefully credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.
get_me #2 Get authenticated user details.
list_social_sets #3 List all social sets (connected account groups). Each social set has platform connections (X, LinkedIn, Threads, Bluesky, Mastodon). Use the social_set_id for other operations.
get_social_set #4 Get details of a specific social set including connected platforms.
create_draft #5 Create a new draft post. Can be saved as draft, scheduled, or added to queue. Supports threads (multiple content items) for X/Twitter.
list_drafts #6 List drafts in a social set. Filter by status: draft, scheduled, published.
get_draft #7 Get details of a specific draft.
update_draft #8 Update an existing draft — change content, schedule, or platforms.
delete_draft #9 Delete a draft.
get_queue #10 Get the posting queue with upcoming time slots and scheduled drafts.
get_queue_schedule #11 Get the queue schedule rules (which days/times posts go out).
list_tags #12 List tags in a social set for organizing drafts.
get_analytics #13 Get post analytics/metrics for a specific platform.
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-typefully
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.
Ayrshare
by @aerostack
Post, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.
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.
Frequently asked questions
What is the Typefully MCP server and what can it do? +
The Typefully MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `get_me`, `list_social_sets`, `get_social_set`, `create_draft`. 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 Typefully 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 Typefully 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 Typefully 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 Typefully MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-typefully": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-typefully"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Typefully MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-typefully", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-typefully"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Typefully MCP require authentication? +
Yes. Typefully requires authentication. Check the MCP's documentation for the required credentials.