Ghost MCP
Interact with the Ghost blogging platform using the Model Context Protocol (MCP) with Server-Sent Events (SSE) support.
Postiz MCP Server
This repository contains a Model Context Protocol (MCP) server implementation for the Postiz platform.
Features
- Supports both SSE, HTTP and stdio transports
- Provides access to Postiz API functionality through MCP tools
- Manage Postiz content
- Secure by default with non-root user in Docker
- Environment variable configuration
- Health check endpoint
Quick Start
Environment Setup
-
Copy the example environment file:
cp .env.example .env -
Edit the
.envfile with your Postiz API credentials:POSTIZ_API_URL=https://your-postiz-instance.com/api POSTIZ_API_KEY=your_postiz_api_key_here PORT=3084 NODE_ENV=production
Using Docker Compose
The easiest way to run the server is with Docker Compose:
docker-compose up -d
This will build the image if needed and start the server in detached mode.
Using Docker Directly
You can also build and run the Docker image directly:
# Build the image
docker build -t oculair/postiz-mcp:latest .
# Run the container
docker run -p 3084:3084 --env-file .env --rm -it oculair/postiz-mcp:latest
Multi-Architecture Build
To build for multiple architectures (amd64 and arm64):
-
Enable Docker Buildx:
docker buildx create --use --name multiarch-builder docker buildx inspect --bootstrap -
Build and push:
docker buildx build --platform linux/amd64,linux/arm64 \ -t oculair/postiz-mcp:latest \ --push . -
Verify the multi-architecture image:
docker manifest inspect oculair/postiz-mcp:latest
Development
Project Structure
.
├── everything/
│ ├── src/
│ │ ├── core/ # Core server implementation
│ │ ├── tools/ # MCP tool implementations
│ │ ├── transports/ # Transport implementations (SSE, stdio)
│ │ └── index.js # Main entry point
│ └── package.json # Node.js dependencies
├── .env.example # Example environment variables
├── .gitignore # Git ignore file
├── compose.yaml # Docker Compose configuration
├── Dockerfile # Docker build configuration
└── README.md # This file
Available Tools
The server provides the following MCP tools:
create-postget-postsget-integrationsget-selflogin
For detailed information about each tool and its parameters, see the everything/README.md file.
Debugging
To debug the container, you can run it with an interactive shell:
docker run -p 3084:3084 --env-file .env --rm -it --entrypoint bash oculair/postiz-mcp:latest
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"postiz": {
"url": "http://localhost:3084/sse",
"disabled": false,
"alwaysAllow": []
}
}
}
Related Servers
Discord
Enables AI assistants to interact with the Discord platform, allowing them to send messages, manage channels, and perform other actions.
Discord MCP
An MCP server for the Discord API, enabling seamless integration of Discord bots with MCP-compatible applications.
Discord
A server for reading and sending messages on Discord.
Desktop Notification
Send cross-platform desktop notifications from AI assistants.
Perplexity Chat
An MCP server for the Perplexity API to query responses and manage conversations.
Twilio SMS Server
Send SMS messages using the Twilio API. Functions as an MCP server or a standalone REST API.
FastMail
Interact with FastMail's email, calendar, and contacts via its JMAP API.
LINE Bot MCP Server
Connects an AI agent to a LINE Official Account using the LINE Messaging API.
Slack MCP Client in Go
A Slack bot client that bridges Slack and Model Context Protocol (MCP) servers, enabling LLMs to use MCP tools.
AivisSpeech
A server for text-to-speech generation using the AivisSpeech engine.