dapper-mcp-wp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_sitesA | List the WordPress sites this server is configured to connect to. |
| get_site_contextA | Bring Claude up to speed on a site: confirms auth, reports active theme, plugins, detected page builder, and a sample of recent pages. |
| list_pagesB | List pages on a site, optionally filtered by a search term. |
| get_pageB | Fetch one page's raw content (the editable source: shortcodes / blocks / HTML). |
| create_pageB | Create a new page. Defaults to DRAFT so it can be previewed before going live. |
| update_pageA | Update an existing page's title/content/status. WordPress auto-saves a revision on every change, so edits are rollback-safe. Omit status to keep current state. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a distinct purpose: page CRUD (create, read, update, list) plus site context and site listing. No overlaps or ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., create_page, list_sites), making them predictable and easy to understand.
With 6 tools, the server is well-scoped for its purpose (WordPress page editing), covering essential operations without unnecessary bloat or insufficiency.
CRUD for pages is mostly covered (create, read, update, list), but missing a delete_page tool, which could be a minor gap. Site context and listing are included.