Ghost MCP Server
@mtane0412
About Ghost MCP Server
A Model Context Protocol (MCP) server that integrates with the Ghost Admin API. This server enables programmatic access to Ghost CMS features including post management, page management, member management, and more.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"ghost-mcp-server": {
"command": "npx",
"args": [
"@mtane0412/ghost-mcp-server"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Ghost MCP Server?
Ghost MCP Server is a Model Context Protocol (MCP) server that integrates with the Ghost Admin API, enabling programmatic access to Ghost CMS features such as post, page, tag, author, and member management. It is designed for developers and AI assistants who need to interact with a Ghost CMS instance programmatically.
How to use Ghost MCP Server?
Install the package with npm install @mtane0412/ghost-mcp-server, set the environment variables GHOST_URL and GHOST_ADMIN_API_KEY (or use a .env file), then start the server with npx @mtane0412/ghost-mcp-server. After startup, the server exposes tools like get_posts, create_post, search_members, and upload_image for use by MCP clients.
Key features of Ghost MCP Server
- Post management: create, read, update, delete, search
- Page management: create, read, update, delete
- Tag management
- Author management
- Member management: create, read, update, delete, search
- Image upload support
Use cases of Ghost MCP Server
- Automate the creation and publishing of blog posts
- Programmatically search, retrieve, and update existing posts
- Manage Ghost CMS members (create, edit, delete, search)
- Upload images to Ghost CMS for use in posts or profiles
- Manage pages and their metadata alongside posts
FAQ from Ghost MCP Server
What are the prerequisites to use Ghost MCP Server?
Node.js v18 or higher, a Ghost CMS instance, and a Ghost Admin API key from the Ghost Admin dashboard (Settings > Integrations).
How do I configure the server?
Set the GHOST_URL (your Ghost blog URL) and GHOST_ADMIN_API_KEY environment variables, or create a .env file with those values. The server reads them at startup.
What tools are available in Ghost MCP Server?
Tools include get_posts, get_post, search_posts, create_post, update_post, delete_post, get_pages, get_members, search_members, and upload_image. Each tool accepts parameters as documented.
How can I debug Ghost MCP Server?
Use the MCP Inspector by running npm run inspect in the project directory. This provides a URL to access debugging tools in a browser.

Comments