Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Ghost Styling

БесплатноНе проверен

Enables styling and management of Ghost blogs by providing vision of the live page (markup and CSS) for accurate CSS targeting, along with tools for content man

GitHubEmbed

Описание

Enables styling and management of Ghost blogs by providing vision of the live page (markup and CSS) for accurate CSS targeting, along with tools for content management via Ghost's Admin API.

README

An MCP server that builds your own Ghost blog theme from your existing theme and real website data.

Most Ghost integrations manage content; this one handles how your blog looks. It gives the model your real data to design against: the brand (colours, fonts, logo) pulled from your live site, that page's rendered HTML and CSS, your current theme, and your site settings. You get back a complete, custom theme to preview locally and upload when you're ready.

Styling and vision come first. The authenticated client underneath is generic, so the rest of the Ghost Admin API (posts, members, tags, and the other resources) follows as thin tool wrappers, growing this into a full management server.

Status

Working: auth, vision, theme generation/preview/upload, site settings, and content + audience management (posts, tags, members, newsletters). Roadmap:

  • Authenticated Admin API client (generic browse/read/add/edit/delete)
  • Vision: extract_brand distils a live site's brand + navigation; get_theme_structure fetches its markup + CSS; check_contrast scores colour pairs against WCAG
  • Themes: generate, preview locally, upload, restyle, list, download, and (guarded) activate themes
  • Site settings: read/update brand + SEO metadata (title, description, accent, meta/OG/Twitter) and navigation menus
  • Management: posts, tags, members, and newsletters as CRUD tools
  • Guided flow: a theme-a-site prompt and a server instructions block encode the brand-first workflow
  • Management: tiers, offers, and users as they're needed (next)

Tools

The server exposes these tools to the model:

Vision

  • extract_brand: distil a live site into clean brand tokens (colour palette, heading/body fonts, logo, button style) plus its navigation menus (header/footer content links, with login/sign-up/account links flagged separately) to design against.
  • get_theme_structure: fetch a live page's HTML skeleton and linked CSS, so styling targets selectors that actually exist.
  • check_contrast: WCAG contrast ratio (and AA/AAA pass levels) between two colours, so text-on-accent stays readable.

Themes

  • create_theme: generate a complete, valid, previewable theme from a CSS design (and optional index/post/page/default template overrides).
  • preview_theme: render a theme locally and serve it on localhost to review before publishing.
  • upload_theme: package and upload a theme; it installs inactive, so the live site is untouched.
  • restyle_theme: edit an installed theme's stylesheet (append or replace) and re-upload it, to iterate a theme without regenerating it.
  • list_themes: list installed themes and which one is active.
  • download_theme: download an installed theme's source as a zip.
  • activate_theme: make an installed theme the live one — outward-facing; only on explicit user instruction, never an automatic follow-on to upload/restyle.

Images

  • upload_image: upload a local image file; returns a hosted URL to use for a post's feature_image, the site logo/icon, or a newsletter header.
  • upload_image_from_url: fetch a public image (under the same SSRF guard as vision) and re-host it on the blog.

Site settings

  • get_site_settings: read brand and SEO settings.
  • update_site_metadata: site title/description plus SEO and social metadata (meta_*, Open Graph, Twitter cards).
  • update_branding: the brand accent colour.
  • update_navigation: set the primary (header) and secondary (footer) navigation menus.

Posts

  • list_posts / get_post: browse posts, or read one (with rendered HTML and a draft preview_url).
  • create_post / update_post / delete_post: write posts from HTML; drafts by default.
  • publish_post: publish a post and email it to a newsletter's members (outward-facing; a deliberate, explicit send, not a side effect of an edit).

Pages

  • list_pages / get_page: browse standalone pages (about, contact, …), or read one (with rendered HTML and a preview_url).
  • create_page / update_page / delete_page: write pages from HTML; drafts by default. Pages share post fields but have no tags or feed placement.

Tags

  • list_tags / get_tag: browse tags (with post counts), or read one.
  • create_tag / update_tag / delete_tag: manage tags.

Members

  • list_members / get_member: browse members (filter by status:paid, label:vip, …) or read one, with labels and subscribed newsletters.
  • create_member / update_member: add a member from an email; set name, note, labels, and newsletter subscriptions.

Newsletters

  • list_newsletters / get_newsletter: browse newsletters or read one.
  • create_newsletter / update_newsletter: create and configure newsletters; retire one with status: archived (the API has no delete).

Tiers

  • list_tiers / get_tier: browse paid plans (with prices and benefits) or read one.
  • create_tier / update_tier: create and configure tiers; no delete (retire with active: false).

Offers

  • list_offers / get_offer: browse discount offers (each with its linked tier) or read one.
  • create_offer / update_offer: create offers against a tier; no delete (Ghost only allows editing name/code/display fields after creation).

Labels

  • list_labels / get_label: browse member labels or read one.
  • create_label / update_label / delete_label: manage labels for member segmentation.

Users

  • list_users / get_user: browse authors/staff or read one. Read-only — the Admin API forbids integrations from writing users.

Activating a theme is intentionally not a tool: it changes the live site, so it stays a manual step. The Admin API has no delete for members, newsletters, tiers, or offers, so neither does this server; users are read-only.

Guided workflow

The server ships an instructions block (always in the model's context) encoding the recommended order (extract the brand, confirm direction, build, preview, then upload inactive), plus a theme-a-site prompt the user can invoke to start that guided flow. Because those instructions are sent to the model on every connection, anyone who installs the server can simply ask their assistant "how do I use this?" and get the best-practice walkthrough.

  • docs/theming-guide.md — the user-facing best-practices guide: how to use it, the end-to-end theming path, and design/colour/SEO best practices. Start here.
  • docs/theme-conventions.md — the full template and CSS contract, for hand-writing templates.

Requirements

  • An MCP client to run it in, e.g. Claude Desktop, Cline, or Claude Code. This is an MCP server; it runs inside a client, not on its own.
  • Python 3.13+
  • uv
  • A Ghost site and a staff access token (from your user profile page in Ghost Admin). Site-wide styling and management need a token with the Owner or Admin role.

Setup

git clone https://github.com/stemcreations/ghost-mcp.git && cd ghost-mcp
uv sync                  # creates .venv and installs everything

The server reads its configuration from environment variables:

Variable Required Example
GHOST_ADMIN_URL yes https://yourblog.example.com
GHOST_STAFF_ACCESS_TOKEN yes <id>:<secret> (from your Ghost user profile)
GHOST_API_VERSION no v6.0 (default; match your Ghost major version)

Provide them either way:

  • In your MCP client: put them in the server's env block (see Running). No .env file is needed; this is the usual setup for Claude Desktop.
  • In a local .env: handy for development and the connection check: cp .env.example .env and fill it in. (If both are set, the client's env values win.)

Confirm the credentials reach your site:

uv run python scripts/check_connection.py

Running

Interactively, with the MCP Inspector:

uv run fastmcp dev src/ghost_mcp/server.py

Connecting to Claude Desktop

Add the server to the config file below, then fully restart Claude Desktop (it reads the config only at startup).

OS Config file
Windows %APPDATA%\Claude\claude_desktop_config.json
macOS ~/Library/Application Support/Claude/claude_desktop_config.json

Use the full path to uv for command; clients often don't have it on their PATH. Find it with (Get-Command uv).Source (Windows PowerShell) or which uv (macOS/Linux). --directory points uv at the project, so the project's .env is loaded automatically (or pass credentials with an env block instead, see below).

Windows:

{
  "mcpServers": {
    "ghost": {
      "command": "C:\\Users\\you\\.local\\bin\\uv.exe",
      "args": ["run", "--directory", "C:\\path\\to\\ghost-mcp", "ghost-mcp"]
    }
  }
}

macOS / Linux:

{
  "mcpServers": {
    "ghost": {
      "command": "/home/you/.local/bin/uv",
      "args": ["run", "--directory", "/home/you/ghost-mcp", "ghost-mcp"]
    }
  }
}

The same command/args work with any MCP client (Cline, Claude Code, …); only the config-file location differs. To pass credentials through the client instead of a .env, add an env block to the server entry:

"env": {
  "GHOST_ADMIN_URL": "https://yourblog.example.com",
  "GHOST_STAFF_ACCESS_TOKEN": "<id>:<secret>",
  "GHOST_API_VERSION": "v6.0"
}

Run without cloning

To skip git clone, have uvx install and run the server straight from the repo. Add this to the same config file (use the full path to uvx if your client doesn't have it on PATH):

{
  "mcpServers": {
    "ghost": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/stemcreations/ghost-mcp.git", "ghost-mcp"],
      "env": {
        "GHOST_ADMIN_URL": "https://yourblog.example.com",
        "GHOST_STAFF_ACCESS_TOKEN": "<id>:<secret>",
        "GHOST_API_VERSION": "v6.0"
      }
    }
  }
}

uvx fetches and builds the package on first launch (git must be installed). With no local .env, the credentials come from the env block above.

Authentication, briefly

Ghost's Admin API never takes the token directly. Each request carries a JWT signed from the staff token (id:secret): split on the colon, hex-decode the secret, sign HS256 with a five-minute expiry. ghost_mcp.admin.auth handles this for you.

Site-wide styling (code injection via /settings/) requires the Owner or Admin role; a standard integration key cannot reach those endpoints.

Architecture

The package is layered so each piece has one job:

Layer Module Responsibility
Config ghost_mcp.config Load and validate environment configuration.
Errors ghost_mcp.errors The shared GhostError exception hierarchy.
Admin ghost_mcp.admin Authenticated Admin API: token signing, generic client, theme + settings helpers.
Vision ghost_mcp.vision Fetch the public rendered page + CSS (no auth).
Themes ghost_mcp.theme Generate, locally preview, and package themes.
Tools ghost_mcp.tools Thin MCP wrappers over the layers above.
Server ghost_mcp.server Assemble the layers into a runnable server.

The Admin API is uniform: every resource shares the same browse/read/add/edit/ delete shape, so GhostAdminClient implements those operations generically. A new resource is a thin tool module, not a new subsystem.

This server is intentionally pure Python. Ghost's own tooling is JavaScript, but nothing here needs it: styling deals in CSS strings and theme zips, and post content can be sent as HTML via the Admin API's ?source=html conversion rather than converting to Lexical client-side.

Contributing

The most important convention: put logic in a service module (admin/, vision/, theme/) as a plain, typed, testable function, then expose it through a thin wrapper in tools/. Tools adapt and shape data; they don't hold business logic.

To add a group of tools:

  1. Write the logic as a plain function in the relevant service module, and test it.
  2. Add tools/<name>.py with a register(mcp) function that wraps it.
  3. Call your register from register_all in tools/__init__.py.

Conventions:

  • Type-hint everything.
  • Docstrings go inside functions (FastMCP reads them to describe tools to the model). Keep them concise; put longer context in the module docstring.
  • Write docstrings for people reading the source: clear, no implementation noise.

Before opening a PR:

uv run ruff format       # format
uv run ruff check        # lint
uv run pytest            # test

Or install the git hook to run all three automatically before each commit:

uv run pre-commit install

Security

Ghost MCP runs locally and never exposes your staff token through any tool. See SECURITY.md for the security model, the prompt-injection trust boundary, and how to report a vulnerability.

License

MIT. See LICENSE.

from github.com/stemcreations/ghost-mcp

Установка Ghost Styling

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/stemcreations/ghost-mcp

FAQ

Ghost Styling MCP бесплатный?

Да, Ghost Styling MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Ghost Styling?

Нет, Ghost Styling работает без API-ключей и переменных окружения.

Ghost Styling — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Ghost Styling в Claude Desktop, Claude Code или Cursor?

Открой Ghost Styling на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Ghost Styling with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development