

Admin page — Endpoints tab with copy-to-clipboard URLs
WPRaiz Content API Tool turns your WordPress site into a powerful content API. Create posts, manage categories, generate AI content, and connect AI agents — all via REST API or Model Context Protocol (MCP).
Free (this plugin):
Pro ($49/year at wpraiz.com.br/pro):
The Model Context Protocol server lets AI agents interact with your WordPress site natively. Available via HTTP (REST API) or STDIO (WP-CLI).
Tools: create_post, update_post, search_similar, get_categories, generate_content, rewrite_post, bulk_create
Resources: site-info, recent-posts, categories, content-stats, seo-config
Prompts: publish_seo_article, content_series, seo_audit, refresh_old_content, internal_linking
Add to your claude_desktop_config.json:
{
"mcpServers": {
"wpraiz": {
"command": "wp",
"args": ["wpraiz-mcp", "serve", "--path=/path/to/wordpress", "--user=1"]
}
}
}
Base URL: https://yoursite.com/wp-json/wpraiz/v2/
Endpoint
Method
Auth
Tier
create-post
POST
JWT/Basic
Free
update-post
POST
JWT/Basic
Free
create-posts
POST
JWT/Basic
Pro
generate-content
POST
JWT/Basic
Pro
rewrite-post
POST
JWT/Basic
Pro
search-similar
GET
Public
Free
categories
GET
Public
Free
check-status
GET
Public
Free
auth/token
POST
Credentials
Free
JWT Token:
1. POST to auth/token with username and password
2. Use the returned token as Authorization: Bearer <token>
Basic Auth:
Use WordPress Application Passwords with standard HTTP Basic authentication.
Visit wpraiz.com.br or open an issue on GitHub.