Publish posts, manage members, and control your Ghost content platform — AI-powered editorial workflows.
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": {
"ghost": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-ghost",
"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 ghost 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.
Create, publish, and manage Ghost blog posts, pages, and members from your AI agents.
Ghost is the open-source publishing platform used by independent creators and media teams for newsletters, blogs, and membership sites. This MCP server connects your AI agents directly to your Ghost Admin API — enabling automated content creation, publishing workflows, and member management without logging into the Ghost dashboard.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-ghost
| Tool | Description |
|---|---|
list_posts | List posts, filterable by status (published, draft, scheduled) |
get_post | Get a specific post with full HTML content |
create_post | Create a new post (draft or published) |
update_post | Update post fields (requires updated_at for conflict detection) |
delete_post | Delete a post permanently |
publish_post | Publish a draft post (shortcut for update with status=published) |
list_pages | List pages, filterable by status |
list_members | List members, filterable by email |
create_member | Create a new member with optional labels |
| Variable | Required | Description | How to Get |
|---|---|---|---|
GHOST_URL | Yes | Full URL of your Ghost site (e.g. https://myblog.ghost.io) | Your Ghost site URL — no trailing slash |
GHOST_ADMIN_API_KEY | Yes | Admin API key in {id}:{secret} format | Ghost Admin → Settings → Integrations → Add custom integration → copy Admin API Key |
GHOST_URL and GHOST_ADMIN_API_KEY under Project → SecretsOnce added, every AI agent in your workspace can call Ghost tools automatically — no per-user setup needed.
"List all draft posts on my Ghost blog and summarize what each one is about"
"Create a new draft post titled 'March Product Update' with the following content..."
"Add jane@example.com as a member with the label newsletter-subscriber"
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-ghost \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-GHOST-URL: https://myblog.ghost.io' \
-H 'X-Mcp-Secret-GHOST-ADMIN-API-KEY: your-id:your-secret' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_posts","arguments":{"status":"draft"}}}'
MIT
Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-ghost
Sub-50ms globally · Zero cold start
@aerostack
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
by @aerostack
Discover and invoke any MCP, Function, or Skill published to the Aerostack marketplace — the universal AI capability hub.
by @aerostack
Search indexes, manage records, browse data, and configure ranking in Algolia — AI-native instant search access.
by @aerostack
Query documents, run AQL, traverse graphs, and manage collections in your ArangoDB database — AI-native multi-model database access.
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.
by @aerostack
Manage projects, to-dos, messages, schedules, and campfire chats in Basecamp — AI-native project management.
by @aerostack
Run SQL queries, list datasets and tables, inspect schemas, and export results from Google BigQuery — AI-native data warehouse access.
Yes. The Ghost MCP includes a create_post tool that lets Claude create posts in your Ghost account from a plain-English prompt. You can also update and delete posts — no Ghost UI needed.
Yes. The Ghost MCP includes tools to list and retrieve posts from your Ghost account. Claude can filter, sort, and summarize posts based on your instructions.
Yes. The Ghost MCP uses the open Model Context Protocol standard, so it works in Claude, Cursor, Windsurf, and any other MCP-compatible AI tool. All 9 Ghost tools are available everywhere you connect it — install once on Aerostack.
Yes. The Ghost MCP includes tools to update posts in your Ghost account. Tell Claude what to change in plain English — it reads the current state and applies the update via the Ghost API.