# create_draft

A write tool on the WordPress MCP Server MCP server.

Agent View of the PolicyLayer registry record for `create_draft`. HTML page: https://policylayer.com/tools/beilunyang-wordpress-mcp-server/create-draft

## Facts

- Tool: `create_draft`
- Server: WordPress MCP Server (`beilunyang/wordpress-mcp-server`) — https://policylayer.com/tools/beilunyang-wordpress-mcp-server.md
- Homepage: https://github.com/beilunyang/wordpress-mcp-server
- Risk category: Write (Medium risk)
- Registry record: grade B, identity unverified
- Server rate-limited: no
- Parameters: 0
- Recommended policy verdict: Rate-limited

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "create_draft",
    "arguments": {}
  }
}
```

## Why create_draft is rated Medium

This tool creates new content (draft posts) in a WordPress system, which is reversible through editing or deletion. This fits the Write category (creates or modifies data reversibly). Severity is medium because unauthorized content creation could spam a blog or create misleading posts, but drafts are not published and remain under author control.

From the tool's own definition: "Tool name 'create_draft' indicates creation of content within a WordPress system. The server description mentions 'automated content management and publishing via the WordPress REST API'."

## Use case

AI agents use create_draft to create or update resources in WordPress MCP Server, usually the action step of a workflow, after the agent has gathered context. Every call changes real data in your WordPress MCP Server environment.

## Recommended policy (PolicyLayer)

Verdict: **Rate-limited**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches WordPress MCP Server:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "create_draft": {
      "limits": [
        {
          "counter": "create_draft_rate",
          "window": "minute",
          "max": 30,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## Other tools on WordPress MCP Server (3)

- `get_comments` — Read — https://policylayer.com/tools/beilunyang-wordpress-mcp-server/get-comments.md
- `get_post_details` — Read — https://policylayer.com/tools/beilunyang-wordpress-mcp-server/get-post-details.md
- `search_posts` — Read — https://policylayer.com/tools/beilunyang-wordpress-mcp-server/search-posts.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=beilunyang-wordpress-mcp-server · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/beilunyang-wordpress-mcp-server
