在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用api-conventions
星标2
分支0
更新时间2026年2月4日 22:43
REST API conventions for WordPress MCP SaaS
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
REST API conventions for WordPress MCP SaaS
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Cloudflare Worker patterns for D1 database, KV storage, and Workers runtime
React Dashboard patterns with WordPress blue theme
D1 database migration patterns for WordPress MCP
MCP JSON-RPC 2.0 protocol reference for WordPress tools
WordPress REST API patterns and Application Password authentication
| name | api-conventions |
| description | REST API conventions for WordPress MCP SaaS |
| user-invocable | false |
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Authorization: Bearer n2f_xxxxxxxxxxxxx
x-wordpress-url: https://wp.example.com
x-wordpress-username: admin
x-wordpress-password: ApplicationPasswordNoSpaces
{
"success": true,
"data": { ... }
}
{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Title is required"
}
}
| Status | Meaning |
|---|---|
| 200 | Success |
| 201 | Created |
| 400 | Bad Request |
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Not Found |
| 429 | Rate Limited |
| 500 | Internal Error |
| Code | Description |
|---|---|
WP_AUTH_FAILED | WordPress authentication failed |
WP_NOT_FOUND | WordPress resource not found |
WP_API_ERROR | WordPress API returned error |
APP_PASSWORD_FORMAT | Application Password has spaces |