# io.github.cvrt-jh/wordpress-mcp (npm · @cavort-it-systems/wordpress-mcp)

Lightweight WordPress MCP server - 42 tools, token-optimized (95% smaller responses)

- Trust score: 68/100 (medium)
- Change this week: +22
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@cavort-it-systems/wordpress-mcp`: 68/100 (this document), [markdown](https://verifymcp.io/servers/cvrt-jh-wordpress-mcp/cavort-it-systems-wordpress-mcp.md), [page](https://verifymcp.io/servers/cvrt-jh-wordpress-mcp/cavort-it-systems-wordpress-mcp)

## Channel facts

- Registry: `npm`
- Package: `@cavort-it-systems/wordpress-mcp`
- Version: `1.0.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 14 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 2147 tokens (~44/item across 48 items; 48 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 99/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 97% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add cvrt-jh-wordpress-mcp -- npx -y @cavort-it-systems/wordpress-mcp
```

### Codex

```bash
codex mcp add cvrt-jh-wordpress-mcp -- npx -y @cavort-it-systems/wordpress-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "cvrt-jh-wordpress-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@cavort-it-systems/wordpress-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add cvrt-jh-wordpress-mcp --command npx --arg -y --arg @cavort-it-systems/wordpress-mcp
```

### Hermes

```yaml
mcp_servers:
  cvrt-jh-wordpress-mcp:
    command: "npx"
    args: ["-y", "@cavort-it-systems/wordpress-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "cvrt-jh-wordpress-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@cavort-it-systems/wordpress-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 68, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 64, +28)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Security disclosure: fail → unverified
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] License: unverified → pass
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-08-01 (score 36, −10)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (48)

### `wp_site_info` (~23 tokens)

Get WordPress site information (name, description, URL, timezone)

### `wp_get_settings` (~24 tokens)

Get WordPress site settings (title, tagline, timezone, date format)

### `wp_update_settings` (~53 tokens)

Update WordPress site settings

Input parameters:

- `description` (string): Site tagline/description
- `timezone_string` (string): Timezone (e.g., Europe/Berlin)
- `title` (string): Site title

### `wp_get_namespaces` (~22 tokens)

List available REST API namespaces (plugins may add custom endpoints)

### `wp_list_posts` (~110 tokens)

List WordPress posts with optional filters

Input parameters:

- `author` (number): Author ID
- `categories` (string): Category ID(s), comma-separated
- `order` (string)
- `orderby` (string)
- `page` (number): Page number
- `per_page` (number): Posts per page (max 100)
- `search` (string): Search term
- `status` (string): Post status filter
- `tags` (string): Tag ID(s), comma-separated

### `wp_get_post` (~35 tokens)

Get a single post by ID

Input parameters:

- `content` (boolean): Include full content
- `id` (number, required): Post ID

### `wp_create_post` (~83 tokens)

Create a new WordPress post

Input parameters:

- `categories` (array): Category IDs
- `content` (string): Post content (HTML)
- `excerpt` (string): Post excerpt
- `featured_media` (number): Featured image ID
- `status` (string): Post status
- `tags` (array): Tag IDs
- `title` (string, required): Post title

### `wp_update_post` (~90 tokens)

Update an existing post

Input parameters:

- `categories` (array): Category IDs
- `content` (string): Post content (HTML)
- `excerpt` (string): Post excerpt
- `featured_media` (number): Featured image ID
- `id` (number, required): Post ID
- `status` (string): Post status
- `tags` (array): Tag IDs
- `title` (string): Post title

### `wp_delete_post` (~45 tokens)

Delete a post (moves to trash, or permanently if force=true)

Input parameters:

- `force` (boolean): Bypass trash and delete permanently
- `id` (number, required): Post ID

### `wp_search_posts` (~34 tokens)

Search posts by keyword

Input parameters:

- `per_page` (number): Results per page
- `search` (string, required): Search term

### `wp_list_pages` (~78 tokens)

List WordPress pages

Input parameters:

- `order` (string)
- `orderby` (string)
- `page` (number): Page number
- `parent` (number): Parent page ID (0 for top-level)
- `per_page` (number): Pages per request (max 100)
- `status` (string): Page status filter

### `wp_get_page` (~35 tokens)

Get a single page by ID

Input parameters:

- `content` (boolean): Include full content
- `id` (number, required): Page ID

### `wp_create_page` (~65 tokens)

Create a new WordPress page

Input parameters:

- `content` (string): Page content (HTML)
- `menu_order` (number): Menu order
- `parent` (number): Parent page ID
- `status` (string): Page status
- `title` (string, required): Page title

### `wp_update_page` (~72 tokens)

Update an existing page

Input parameters:

- `content` (string): Page content (HTML)
- `id` (number, required): Page ID
- `menu_order` (number): Menu order
- `parent` (number): Parent page ID
- `status` (string): Page status
- `title` (string): Page title

### `wp_delete_page` (~45 tokens)

Delete a page (moves to trash, or permanently if force=true)

Input parameters:

- `force` (boolean): Bypass trash and delete permanently
- `id` (number, required): Page ID

### `wp_list_users` (~64 tokens)

List WordPress users

Input parameters:

- `page` (number): Page number
- `per_page` (number): Users per page (max 100)
- `roles` (string): Filter by role(s), comma-separated
- `search` (string): Search by name or email

### `wp_me` (~14 tokens)

Get the currently authenticated user

### `wp_get_user` (~24 tokens)

Get a user by ID

Input parameters:

- `id` (number, required): User ID

### `wp_create_user` (~67 tokens)

Create a new WordPress user

Input parameters:

- `email` (string, required): Email address
- `name` (string): Display name
- `password` (string, required): Password
- `roles` (array): Roles (e.g., ['editor'])
- `username` (string, required): Username (login name)

### `wp_update_user` (~58 tokens)

Update an existing user

Input parameters:

- `email` (string): Email address
- `id` (number, required): User ID
- `name` (string): Display name
- `password` (string): New password
- `roles` (array): Roles

### `wp_delete_user` (~44 tokens)

Delete a user (requires reassign parameter)

Input parameters:

- `id` (number, required): User ID to delete
- `reassign` (number, required): User ID to reassign content to

### `wp_list_plugins` (~24 tokens)

List all installed plugins

Input parameters:

- `status` (string): Filter by status

### `wp_get_plugin` (~35 tokens)

Get plugin details by slug

Input parameters:

- `plugin` (string, required): Plugin identifier (e.g., 'akismet/akismet.php')

### `wp_activate_plugin` (~33 tokens)

Activate a plugin

Input parameters:

- `plugin` (string, required): Plugin identifier (e.g., 'akismet/akismet.php')

### `wp_deactivate_plugin` (~35 tokens)

Deactivate a plugin

Input parameters:

- `plugin` (string, required): Plugin identifier (e.g., 'akismet/akismet.php')

### `wp_delete_plugin` (~41 tokens)

Delete/uninstall a plugin (must be deactivated first)

Input parameters:

- `plugin` (string, required): Plugin identifier (e.g., 'akismet/akismet.php')

### `wp_list_themes` (~25 tokens)

List all installed themes

Input parameters:

- `status` (string): Filter by status

### `wp_get_active_theme` (~16 tokens)

Get the currently active theme

### `wp_get_theme` (~28 tokens)

Get theme details by stylesheet name

Input parameters:

- `stylesheet` (string, required): Theme stylesheet (folder name)

### `wp_activate_theme` (~31 tokens)

Activate a theme (switch themes)

Input parameters:

- `stylesheet` (string, required): Theme stylesheet (folder name) to activate

### `wp_list_media` (~58 tokens)

List media library items

Input parameters:

- `media_type` (string): Filter by type
- `page` (number): Page number
- `per_page` (number): Items per page (max 100)
- `search` (string): Search term

### `wp_get_media` (~25 tokens)

Get a media item by ID

Input parameters:

- `id` (number, required): Media ID

### `wp_update_media` (~66 tokens)

Update media item metadata (title, alt text, caption)

Input parameters:

- `alt_text` (string): Alt text for images
- `caption` (string): Caption
- `description` (string): Description
- `id` (number, required): Media ID
- `title` (string): Title

### `wp_delete_media` (~37 tokens)

Delete a media item

Input parameters:

- `force` (boolean): Permanently delete (bypass trash)
- `id` (number, required): Media ID

### `wp_list_categories` (~52 tokens)

List all categories

Input parameters:

- `hide_empty` (boolean): Hide categories with no posts
- `parent` (number): Parent category ID (0 for top-level)
- `per_page` (number): Categories per page

### `wp_create_category` (~50 tokens)

Create a new category

Input parameters:

- `description` (string): Description
- `name` (string, required): Category name
- `parent` (number): Parent category ID
- `slug` (string): URL slug

### `wp_update_category` (~58 tokens)

Update a category

Input parameters:

- `description` (string): Description
- `id` (number, required): Category ID
- `name` (string): Category name
- `parent` (number): Parent category ID
- `slug` (string): URL slug

### `wp_delete_category` (~22 tokens)

Delete a category

Input parameters:

- `id` (number, required): Category ID

### `wp_list_tags` (~46 tokens)

List all tags

Input parameters:

- `hide_empty` (boolean): Hide tags with no posts
- `per_page` (number): Tags per page
- `search` (string): Search term

### `wp_create_tag` (~40 tokens)

Create a new tag

Input parameters:

- `description` (string): Description
- `name` (string, required): Tag name
- `slug` (string): URL slug

### `wp_update_tag` (~48 tokens)

Update a tag

Input parameters:

- `description` (string): Description
- `id` (number, required): Tag ID
- `name` (string): Tag name
- `slug` (string): URL slug

### `wp_delete_tag` (~22 tokens)

Delete a tag

Input parameters:

- `id` (number, required): Tag ID

### `wp_list_comments` (~52 tokens)

List comments

Input parameters:

- `page` (number): Page number
- `per_page` (number): Comments per page
- `post` (number): Filter by post ID
- `status` (string): Comment status

### `wp_get_comment` (~24 tokens)

Get a comment by ID

Input parameters:

- `id` (number, required): Comment ID

### `wp_create_comment` (~77 tokens)

Create a comment on a post

Input parameters:

- `author_email` (string): Author email (if not logged in)
- `author_name` (string): Author name (if not logged in)
- `content` (string, required): Comment content
- `parent` (number): Parent comment ID (for replies)
- `post` (number, required): Post ID

### `wp_update_comment` (~47 tokens)

Update a comment (approve, edit content, etc.)

Input parameters:

- `content` (string): Comment content
- `id` (number, required): Comment ID
- `status` (string): Comment status

### `wp_delete_comment` (~35 tokens)

Delete a comment

Input parameters:

- `force` (boolean): Bypass trash and delete permanently
- `id` (number, required): Comment ID

### `wp_moderate_comments` (~35 tokens)

Batch moderate comments by status

Input parameters:

- `ids` (array, required): Comment IDs
- `status` (string, required): New status

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/cvrt-jh-wordpress-mcp/cavort-it-systems-wordpress-mcp#diagnostics

## Score history

- 2026-08-03: 68
- 2026-08-02: 64
- 2026-08-01: 36
- 2026-07-31: 46
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@cavort-it-systems/wordpress-mcp
- Socket report: https://socket.dev/npm/package/@cavort-it-systems/wordpress-mcp
- Repository: https://github.com/cvrt-jh/wordpress-mcp
- Changelog RSS feed: https://verifymcp.io/servers/cvrt-jh-wordpress-mcp/cavort-it-systems-wordpress-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/cvrt-jh-wordpress-mcp/cavort-it-systems-wordpress-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/cvrt-jh-wordpress-mcp/cavort-it-systems-wordpress-mcp
