ghost-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
ghost-mcp by MFYDev | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 186 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | CommunicationProductivityAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
ghost-mcp · Summary
An MCP server for managing Ghost CMS through LLM interfaces like Claude with comprehensive blog management tools.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
ghost-mcp · Use cases
- Content creators managing Ghost blogs through natural language commands in Claude
- Automated blog publishing and content management via LLM interactions
- Ghost CMS administration without using the web interface
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
ghost-mcp · Install
Install the Ghost MCP server using npm:
npm install -g @fanyangmeng/ghost-mcpConfigure Claude Desktop with this JSON in your claude_desktop_config.json:
{
"mcpServers": {
"ghost-mcp": {
"command": "npx",
"args": ["-y", "@fanyangmeng/ghost-mcp"],
"env": {
"GHOST_API_URL": "https://yourblog.com",
"GHOST_ADMIN_API_KEY": "your_admin_api_key",
"GHOST_API_VERSION": "v5.0"
}
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.