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.
Overview
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, and member management.
To use Ghost MCP Server, install it via npm, configure your Ghost Admin API key and URL, and start the server using the provided command.
- Post Management (CRUD operations) - Page Management (CRUD operations) - Member Management (CRUD operations) - Image Upload Support - Tag and Author Management
- Automating blog post creation and management.
- Integrating Ghost CMS with other applications.
- Managing members and their subscriptions programmatically.
Add to your AI client
Use these steps to connect Ghost MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"ghost-mcp-server-mtane0412": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ghost-mcp-server-mtane0412"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"ghost-mcp-server-mtane0412": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ghost-mcp-server-mtane0412"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"ghost-mcp-server-mtane0412": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ghost-mcp-server-mtane0412"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"ghost-mcp-server-mtane0412": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ghost-mcp-server-mtane0412"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"ghost-mcp-server-mtane0412": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ghost-mcp-server-mtane0412"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"ghost-mcp-server-mtane0412": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ghost-mcp-server-mtane0412"
]
}
}
}FAQ
What are the prerequisites for using Ghost MCP Server?
You need Node.js (v18 or higher) and a Ghost CMS instance with an Admin API key.
How do I install Ghost MCP Server?
Install it using npm with the command: `npm install @mtane0412/ghost-mcp-server`.
Can I manage members with this server?
Yes! You can create, read, update, and delete members using the server.