MCP Server Policy

GHOST MCP POLICY

Enforce policies on every tool call to the Ghost MCP Server. 7 tools listed, categorised, and ready for rules.

ghost-mcp 4 read 3 write 7 tools total
ghost cms blogging content-management

GET STARTED

Download this policy scaffold and add your rules. Intercept enforces them on every tool call before it reaches Ghost.

terminal

# Download policy scaffold

curl -o ghost.yaml https://raw.githubusercontent.com/policylayer/intercept/main/policies/ghost.yaml

# Run with Intercept

intercept --policy ghost.yaml -- npx -y @ghost-mcp

Server documentation: https://www.npmjs.com/package/ghost-mcp

READ TOOLS

4

WRITE TOOLS

2

DESTRUCTIVE TOOLS

1

POLICY YAML

This scaffold lists every tool with empty rules. Add conditions — rate limits, argument validation, deny rules — then deploy with Intercept.

ghost.yaml
version: "1"
description: "Policy for ghost-mcp"
default: "allow"
tools:
    search_posts:
        rules: []
    get_post:
        rules: []
    list_tags:
        rules: []
    get_analytics:
        rules: []
    create_post:
        rules: []
    update_post:
        rules: []
    delete_post:
        rules: []

RELATED POLICIES

FREQUENTLY ASKED QUESTIONS

What tools does the Ghost MCP server expose?

The Ghost MCP Server exposes 7 tools across 3 categories: Read, Write, Destructive. Each tool can be individually controlled with Intercept policies.

How do I enforce policies on Ghost?

Download the policy scaffold, add rules (rate limits, argument validation, deny rules), then run Intercept as a proxy in front of the Ghost MCP server. Every tool call is evaluated against your YAML policy before execution.

Is the Ghost policy free to use?

Yes. All Intercept policies are open source under the Apache 2.0 licence. Download, modify, and deploy without restrictions.

ENFORCE POLICIES ON GHOST

Open source. One binary. Zero dependencies.