WordPress MCP Server
Server Details
Secure MCP Server for WordPress connects AI assistants and agents to WordPress with secure, controlled access. It lets AI interact with WordPress through MCP while helping organizations manage access, enforce policies, protect non-human identities (NHI), and require human approval for sensitive actions. Use it to securely connect tools such as ChatGPT, Claude, and Cursor with WordPress.
Marketplace Link: https://wordpress.org/plugins/miniorange-secure-mcp-server/
Official website: https://plugins.miniorange.com/mcp-server-ai-policy-enforcement-wordpress
ChatGpt Marketplace: https://chatgpt.com/plugins/plugin_asdk_app_6a312802286c8191bad0a7278a4e53ef
Claude Marketplace: https://claude.ai/directory/miniorange-mcp-for-wordpress
Cursor Marketplace: https://cursor.com/marketplace/miniorange
- Status
- Healthy
- Uptime
- 69.9% over 39 days
- OAuth
- Works in Glama
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 3 tools
Each tool has a clearly distinct role: discover lists abilities, execute runs one, and get_ability_info provides detailed schema. The descriptions explicitly guide when to use each, so there is no practical ambiguity.
All tool names follow the same verb_noun snake_case pattern: discover_abilities, execute_ability, get_ability_info. The naming is predictable and consistent across the set.
Three tools is appropriate for this server's design, since WordPress capabilities are exposed dynamically as abilities rather than as individual static tools. Each tool earns its place: discovery, schema lookup, and execution.
The tool surface fully covers the intended workflow: discover available abilities, inspect their schemas when needed, and execute them. There are no obvious missing operations for the server's stated purpose as a generic WordPress ability gateway.
Available Tools
3 toolsdiscover_abilitiesARead-onlyIdempotentInspect
List what this WordPress site can do. ALWAYS call this first to get the exact ability_name before execute_ability. Optionally filter with query (keyword) or category. Returns each ability's name, a one-line description, and key parameters.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Keyword filter, e.g. "post", "order". | |
| category | No | Category/group slug to filter by. |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | |
| count | No | |
| error | No | |
| success | Yes | |
| abilities | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds behavioral context beyond those annotations by stating that the tool returns each ability's name, a one-line description, and key parameters, which is essential for subsequent execution.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two tightly written sentences with no filler. It front-loads the core purpose and the critical usage instruction, then covers filters and return content efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a simple, read-only discovery tool with two optional parameters and an output schema. The description covers what it lists, how it should be used relative to execute_ability, how to filter, and what each result contains. Nothing essential for correct invocation is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents both optional parameters. The description reinforces that they are filters and that they are optional, but it does not add meaning beyond what the input schema already provides. A baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and a clear resource ('what this WordPress site can do'), and explicitly positions the tool as the source for obtaining the exact ability_name needed before execute_ability. This differentiates it from its sibling execute_ability, making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage guidance: 'ALWAYS call this first to get the exact ability_name before execute_ability.' It also notes optional filtering by query or category. However, it does not address when to use get_ability_info instead, so the guidance is strong but not fully exhaustive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
execute_abilityADestructiveInspect
Run one ability on the site. Pass the exact ability_name from discover_abilities and its parameters (shaped by that ability's input schema; use {} if it takes none). Returns {success, data} or {success:false, error}.
| Name | Required | Description | Default |
|---|---|---|---|
| parameters | Yes | Arguments for the ability; {} if none. | |
| ability_name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | No | The result returned by the executed ability. |
| error | No | |
| success | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already indicate destructive, non-read-only, non-idempotent behavior, so the bar is lower. The description adds useful behavioral context by specifying the success/error return shape and the need to source ability_name from discover_abilities. It does not elaborate on side effects, but annotations cover the main safety signal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. The core action is front-loaded, followed by precise parameter instructions and a compact return-format note. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is largely complete for a dynamic execution tool: it names the discovery prerequisite, defines parameter shaping, and gives the return contract. It does not explicitly warn about arbitrary or destructive abilities, but the annotations already carry destructiveHint=true, and the open-world nature is reinforced by referencing discover_abilities.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is only 50% because ability_name lacks a description. The tool description compensates fully by explaining that ability_name must come from discover_abilities and that parameters must follow that ability's own input schema, including the {} convention for no-argument abilities.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Run one ability on the site', identifying both the action and the resource being acted on. It also references discover_abilities, which helps distinguish this execution tool from the discovery and info siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives concrete usage guidance: pass the exact ability_name from discover_abilities and shape parameters according to that ability's input schema, using {} when none are needed. It stops short of explicitly naming alternatives or stating when not to use this tool, but the execution vs. discovery/info distinction is strongly implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_ability_infoARead-onlyIdempotentInspect
Get the full input schema and details for a single ability, when discover_abilities isn't enough. Pass the exact ability_name from discover_abilities.
| Name | Required | Description | Default |
|---|---|---|---|
| ability_name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | |
| ability | No | |
| success | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover readOnly, idempotent, and non-destructive traits; the description adds context beyond them by specifying that the tool returns a full input schema and details for a single ability. It does not contradict annotations and gives a clearer picture of what the call reveals.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences contain the purpose, the trigger condition, the source of the argument, and the exact value to pass. There is no filler or repetition of schema/annotation content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter read-only introspection tool with an output schema present, the description is complete. It covers when to use it, what to pass, and what it returns, alongside sibling context and annotations that carry the safety profile.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must carry the semantic weight. It does so by explaining that ability_name must be the exact value obtained from discover_abilities, which is more meaningful than the raw schema's bare string type.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource ('Get the full input schema and details for a single ability') and immediately differentiates from the sibling discover_abilities by scoping to a single ability. It also tells the agent this is the more detailed fallback, so intent is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly names the alternative discover_abilities and gives the condition for choosing this tool ('when discover_abilities isn't enough'). It also instructs the caller to pass the exact ability_name from discover_abilities, which is a concrete prerequisite.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
- First observed
discover_abilities - First observed
execute_ability - First observed
get_ability_info
Publisher details
- Operator
- miniOrange · Publisher source
- Operator website
- https://www.miniorange.com/
- Vendor relationship
- First-party · Publisher source
- Restrictions
- Requires a self-hosted WordPress 6.9+ site with a publicly accessible HTTPS URL and the miniOrange Secure MCP Server plugin installed and activated. Local or private URLs are not supported. Core MCP connectivity is available on the free plan; advanced governance features such as policy enforcement, human approvals, sensitive data protection, audit trails, and access reviews require a premium plan. · Publisher source
Related MCP Connectors
Security-first WordPress MCP server. 129 tools for Claude, ChatGPT, Gemini. Free on wp.org.
Manage WordPress blogs and WooCommerce shops from Claude, ChatGPT, Cursor and other MCP apps.
WordPress MCP server: publish posts, AI images, SEO and full site management, self-hosted
Zero-setup MCP gateway securely connecting AI to your tools with authentication and workflows
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceA free WordPress plugin that turns your site into a governed MCP server, exposing 153 curated WordPress abilities (posts, media, users, WooCommerce, ACF, SEO) as tools for AI agents like Claude and Cursor. Every ability is off by default, scoped to a least-privilege user, capability-gated, and logged.4GPL 2.0
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage and interact with WordPress sites through MCP, providing tools for content creation, moderation, WooCommerce operations, and governance.47GPL 2.0
- AlicenseNot gradedqualityDmaintenanceMCP server for WordPress content management that provides a secure interface for AI assistants to interact with WordPress sites, enabling content creation, editing, and media management without destructive operations.MIT
- AlicenseNot gradedqualityBmaintenanceA high-performance, enterprise-grade Model Context Protocol (MCP) server connecting WordPress sites directly to modern AI agents (Claude Code, Cursor, Google Antigravity, Windsurf, etc.). Designed with a Dual-Engine Architecture and Zero-Trust Security Guard, it allows AI agents to inspect site health, query posts and pages, explore ACF & custom post types, optimize SEO, and manage content safely36 npm1MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.