Aerostack
electrical_services

Ghost MCP Server — Hosted Api Connectors Integration

MCP Server language Hosted language Public

Publish posts, manage members, and control your Ghost content platform — AI-powered editorial workflows.

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

+4 more

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.

add_circleAdd to Workspace

description Overview

mcp-ghost — Ghost MCP Server

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


What You Can Do

  • Draft and publish posts programmatically — useful for content pipelines that generate articles from data sources or external triggers
  • Manage your publishing calendar by listing scheduled and draft posts and updating their status
  • Add members to your Ghost site automatically as part of lead capture or CRM integration workflows
  • Maintain your pages (About, Landing pages) with the same tools as posts

Available Tools

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

Configuration

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 → SettingsIntegrationsAdd custom integration → copy Admin API Key

Quick Start

Add to Aerostack Workspace
  1. Go to aerostack.dev → Your Project → MCPs
  2. Search for "Ghost" and click Add to Workspace
  3. Add GHOST_URL and GHOST_ADMIN_API_KEY under Project → Secrets

Once added, every AI agent in your workspace can call Ghost tools automatically — no per-user setup needed.

Example Prompts
"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"
Direct API Call
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"}}}'

License

MIT

terminal Tools (10)

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

terminal
_ping #1

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

terminal
list_posts #2

List posts from the Ghost blog

terminal
get_post #3

Get a specific post by ID including its full HTML content

terminal
create_post #4

Create a new post in Ghost

terminal
update_post #5

Update an existing post. Must provide updated_at from the current post for conflict detection.

terminal
delete_post #6

Delete a post from Ghost permanently

terminal
publish_post #7

Publish a draft post (shortcut for update_post with status=published)

terminal
list_pages #8

List pages from the Ghost site

terminal
list_members #9

List members of the Ghost site

terminal
create_member #10

Create a new member in Ghost

Details

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

language Live Endpoint

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

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 Ghost MCP server and what can it do? +

The Ghost MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `list_posts`, `get_post`, `create_post`, `update_post`. 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 Ghost 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 Ghost 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 Ghost 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 Ghost MCP server in Claude Desktop? +

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

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

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

Does Ghost MCP require authentication? +

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