Aerostack
electrical_services

Typefully MCP Server — Hosted Api Connectors Integration

MCP Server language Hosted language Public

Write, schedule, and manage social media drafts across X/Twitter, LinkedIn, Threads, Bluesky, and Mastodon — with queue management and analytics.

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": {
    "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:

+7 more

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.

add_circleAdd to Workspace

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

  1. Go to aerostack.dev → Add MCP
  2. Search "Typefully" and add to your workspace
  3. Add your TYPEFULLY_API_KEY in the secrets panel
  4. 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
LinkedIn 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.

terminal
_ping #1

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

terminal
get_me #2

Get authenticated user details.

terminal
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.

terminal
get_social_set #4

Get details of a specific social set including connected platforms.

terminal
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.

terminal
list_drafts #6

List drafts in a social set. Filter by status: draft, scheduled, published.

terminal
get_draft #7

Get details of a specific draft.

terminal
update_draft #8

Update an existing draft — change content, schedule, or platforms.

terminal
delete_draft #9

Delete a draft.

terminal
get_queue #10

Get the posting queue with upcoming time slots and scheduled drafts.

terminal
get_queue_schedule #11

Get the queue schedule rules (which days/times posts go out).

terminal
list_tags #12

List tags in a social set for organizing drafts.

terminal
get_analytics #13

Get post analytics/metrics for a specific platform.

Details

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

language Live Endpoint

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

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 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.