Skip to main content
Glama

Claudeus WordPress MCP

by deus-h
templates.json43.3 kB
{ "/wp/v2/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions": { "namespace": "wp/v2", "methods": [ "GET" ], "endpoints": [ { "methods": [ "GET" ], "args": { "parent": { "description": "The id of a template", "type": "string", "required": false }, "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false }, "page": { "description": "Current page of the collection.", "type": "integer", "default": 1, "minimum": 1, "required": false }, "per_page": { "description": "Maximum number of items to be returned in result set.", "type": "integer", "minimum": 1, "maximum": 100, "required": false }, "search": { "description": "Limit results to those matching a string.", "type": "string", "required": false }, "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", "items": { "type": "integer" }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", "items": { "type": "integer" }, "default": [], "required": false }, "offset": { "description": "Offset the result set by a specific number of items.", "type": "integer", "required": false }, "order": { "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", "enum": [ "asc", "desc" ], "required": false }, "orderby": { "description": "Sort collection by object attribute.", "type": "string", "default": "date", "enum": [ "date", "id", "include", "relevance", "slug", "include_slugs", "title" ], "required": false } } } ] }, "/wp/v2/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions/(?P<id>[\\d]+)": { "namespace": "wp/v2", "methods": [ "GET", "DELETE" ], "endpoints": [ { "methods": [ "GET" ], "args": { "parent": { "description": "The id of a template", "type": "string", "required": false }, "id": { "description": "Unique identifier for the revision.", "type": "integer", "required": false }, "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false } } }, { "methods": [ "DELETE" ], "args": { "parent": { "description": "The id of a template", "type": "string", "required": false }, "id": { "description": "Unique identifier for the revision.", "type": "integer", "required": false }, "force": { "type": "boolean", "default": false, "description": "Required to be true, as revisions do not support trashing.", "required": false } } } ] }, "/wp/v2/templates/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves": { "namespace": "wp/v2", "methods": [ "GET", "POST" ], "endpoints": [ { "methods": [ "GET" ], "args": { "id": { "description": "The id of a template", "type": "string", "required": false }, "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false } } }, { "methods": [ "POST" ], "args": { "id": { "description": "The id of a template", "type": "string", "required": false }, "slug": { "description": "Unique slug identifying the template.", "type": "string", "minLength": 1, "pattern": "[a-zA-Z0-9_\\%-]+", "required": false }, "theme": { "description": "Theme identifier for the template.", "type": "string", "required": false }, "type": { "description": "Type of template.", "type": "string", "required": false }, "content": { "description": "Content of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit" ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", "context": [ "edit" ], "readonly": true } }, "required": false }, "title": { "description": "Title of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit", "embed" ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", "context": [ "view", "edit", "embed" ], "readonly": true } }, "required": false }, "description": { "description": "Description of template.", "type": "string", "required": false }, "status": { "description": "Status of template.", "type": "string", "enum": [ "publish", "future", "draft", "pending", "private" ], "required": false }, "author": { "description": "The ID for the author of the template.", "type": "integer", "required": false } } } ] }, "/wp/v2/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves/(?P<id>[\\d]+)": { "namespace": "wp/v2", "methods": [ "GET" ], "endpoints": [ { "methods": [ "GET" ], "args": { "parent": { "description": "The id of a template", "type": "string", "required": false }, "id": { "description": "The ID for the autosave.", "type": "integer", "required": false }, "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false } } } ] }, "/wp/v2/templates": { "namespace": "wp/v2", "methods": [ "GET", "POST" ], "endpoints": [ { "methods": [ "GET" ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false }, "wp_id": { "description": "Limit to the specified post id.", "type": "integer", "required": false }, "area": { "description": "Limit to the specified template part area.", "type": "string", "required": false }, "post_type": { "description": "Post type to get the templates for.", "type": "string", "required": false } } }, { "methods": [ "POST" ], "args": { "slug": { "description": "Unique slug identifying the template.", "type": "string", "minLength": 1, "pattern": "[a-zA-Z0-9_\\%-]+", "required": true }, "theme": { "description": "Theme identifier for the template.", "type": "string", "required": false }, "type": { "description": "Type of template.", "type": "string", "required": false }, "content": { "default": "", "description": "Content of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit" ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", "context": [ "edit" ], "readonly": true } }, "required": false }, "title": { "default": "", "description": "Title of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit", "embed" ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", "context": [ "view", "edit", "embed" ], "readonly": true } }, "required": false }, "description": { "default": "", "description": "Description of template.", "type": "string", "required": false }, "status": { "default": "publish", "description": "Status of template.", "type": "string", "enum": [ "publish", "future", "draft", "pending", "private" ], "required": false }, "author": { "description": "The ID for the author of the template.", "type": "integer", "required": false } } } ], "_links": { "self": [ { "href": "https://therift.se/wp-json/wp/v2/templates" } ] } }, "/wp/v2/templates/lookup": { "namespace": "wp/v2", "methods": [ "GET" ], "endpoints": [ { "methods": [ "GET" ], "args": { "slug": { "description": "The slug of the template to get the fallback for", "type": "string", "required": true }, "is_custom": { "description": "Indicates if a template is custom or part of the template hierarchy", "type": "boolean", "required": false }, "template_prefix": { "description": "The template prefix for the created template. This is used to extract the main template type, e.g. in `taxonomy-books` extracts the `taxonomy`", "type": "string", "required": false } } } ], "_links": { "self": [ { "href": "https://therift.se/wp-json/wp/v2/templates/lookup" } ] } }, "/wp/v2/templates/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)": { "namespace": "wp/v2", "methods": [ "GET", "POST", "PUT", "PATCH", "DELETE" ], "endpoints": [ { "methods": [ "GET" ], "args": { "id": { "description": "The id of a template", "type": "string", "required": false }, "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false } } }, { "methods": [ "POST", "PUT", "PATCH" ], "args": { "id": { "description": "The id of a template", "type": "string", "required": false }, "slug": { "description": "Unique slug identifying the template.", "type": "string", "minLength": 1, "pattern": "[a-zA-Z0-9_\\%-]+", "required": false }, "theme": { "description": "Theme identifier for the template.", "type": "string", "required": false }, "type": { "description": "Type of template.", "type": "string", "required": false }, "content": { "description": "Content of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit" ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", "context": [ "edit" ], "readonly": true } }, "required": false }, "title": { "description": "Title of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit", "embed" ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", "context": [ "view", "edit", "embed" ], "readonly": true } }, "required": false }, "description": { "description": "Description of template.", "type": "string", "required": false }, "status": { "description": "Status of template.", "type": "string", "enum": [ "publish", "future", "draft", "pending", "private" ], "required": false }, "author": { "description": "The ID for the author of the template.", "type": "integer", "required": false } } }, { "methods": [ "DELETE" ], "args": { "id": { "description": "The id of a template", "type": "string", "required": false }, "force": { "type": "boolean", "default": false, "description": "Whether to bypass Trash and force deletion.", "required": false } } } ] }, "/wp/v2/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions": { "namespace": "wp/v2", "methods": [ "GET" ], "endpoints": [ { "methods": [ "GET" ], "args": { "parent": { "description": "The id of a template", "type": "string", "required": false }, "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false }, "page": { "description": "Current page of the collection.", "type": "integer", "default": 1, "minimum": 1, "required": false }, "per_page": { "description": "Maximum number of items to be returned in result set.", "type": "integer", "minimum": 1, "maximum": 100, "required": false }, "search": { "description": "Limit results to those matching a string.", "type": "string", "required": false }, "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", "items": { "type": "integer" }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", "items": { "type": "integer" }, "default": [], "required": false }, "offset": { "description": "Offset the result set by a specific number of items.", "type": "integer", "required": false }, "order": { "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", "enum": [ "asc", "desc" ], "required": false }, "orderby": { "description": "Sort collection by object attribute.", "type": "string", "default": "date", "enum": [ "date", "id", "include", "relevance", "slug", "include_slugs", "title" ], "required": false } } } ] }, "/wp/v2/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions/(?P<id>[\\d]+)": { "namespace": "wp/v2", "methods": [ "GET", "DELETE" ], "endpoints": [ { "methods": [ "GET" ], "args": { "parent": { "description": "The id of a template", "type": "string", "required": false }, "id": { "description": "Unique identifier for the revision.", "type": "integer", "required": false }, "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false } } }, { "methods": [ "DELETE" ], "args": { "parent": { "description": "The id of a template", "type": "string", "required": false }, "id": { "description": "Unique identifier for the revision.", "type": "integer", "required": false }, "force": { "type": "boolean", "default": false, "description": "Required to be true, as revisions do not support trashing.", "required": false } } } ] }, "/wp/v2/template-parts/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves": { "namespace": "wp/v2", "methods": [ "GET", "POST" ], "endpoints": [ { "methods": [ "GET" ], "args": { "id": { "description": "The id of a template", "type": "string", "required": false }, "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false } } }, { "methods": [ "POST" ], "args": { "id": { "description": "The id of a template", "type": "string", "required": false }, "slug": { "description": "Unique slug identifying the template.", "type": "string", "minLength": 1, "pattern": "[a-zA-Z0-9_\\%-]+", "required": false }, "theme": { "description": "Theme identifier for the template.", "type": "string", "required": false }, "type": { "description": "Type of template.", "type": "string", "required": false }, "content": { "description": "Content of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit" ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", "context": [ "edit" ], "readonly": true } }, "required": false }, "title": { "description": "Title of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit", "embed" ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", "context": [ "view", "edit", "embed" ], "readonly": true } }, "required": false }, "description": { "description": "Description of template.", "type": "string", "required": false }, "status": { "description": "Status of template.", "type": "string", "enum": [ "publish", "future", "draft", "pending", "private" ], "required": false }, "author": { "description": "The ID for the author of the template.", "type": "integer", "required": false }, "area": { "description": "Where the template part is intended for use (header, footer, etc.)", "type": "string", "required": false } } } ] }, "/wp/v2/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves/(?P<id>[\\d]+)": { "namespace": "wp/v2", "methods": [ "GET" ], "endpoints": [ { "methods": [ "GET" ], "args": { "parent": { "description": "The id of a template", "type": "string", "required": false }, "id": { "description": "The ID for the autosave.", "type": "integer", "required": false }, "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false } } } ] }, "/wp/v2/template-parts": { "namespace": "wp/v2", "methods": [ "GET", "POST" ], "endpoints": [ { "methods": [ "GET" ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false }, "wp_id": { "description": "Limit to the specified post id.", "type": "integer", "required": false }, "area": { "description": "Limit to the specified template part area.", "type": "string", "required": false }, "post_type": { "description": "Post type to get the templates for.", "type": "string", "required": false } } }, { "methods": [ "POST" ], "args": { "slug": { "description": "Unique slug identifying the template.", "type": "string", "minLength": 1, "pattern": "[a-zA-Z0-9_\\%-]+", "required": true }, "theme": { "description": "Theme identifier for the template.", "type": "string", "required": false }, "type": { "description": "Type of template.", "type": "string", "required": false }, "content": { "default": "", "description": "Content of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit" ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", "context": [ "edit" ], "readonly": true } }, "required": false }, "title": { "default": "", "description": "Title of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit", "embed" ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", "context": [ "view", "edit", "embed" ], "readonly": true } }, "required": false }, "description": { "default": "", "description": "Description of template.", "type": "string", "required": false }, "status": { "default": "publish", "description": "Status of template.", "type": "string", "enum": [ "publish", "future", "draft", "pending", "private" ], "required": false }, "author": { "description": "The ID for the author of the template.", "type": "integer", "required": false }, "area": { "description": "Where the template part is intended for use (header, footer, etc.)", "type": "string", "required": false } } } ], "_links": { "self": [ { "href": "https://therift.se/wp-json/wp/v2/template-parts" } ] } }, "/wp/v2/template-parts/lookup": { "namespace": "wp/v2", "methods": [ "GET" ], "endpoints": [ { "methods": [ "GET" ], "args": { "slug": { "description": "The slug of the template to get the fallback for", "type": "string", "required": true }, "is_custom": { "description": "Indicates if a template is custom or part of the template hierarchy", "type": "boolean", "required": false }, "template_prefix": { "description": "The template prefix for the created template. This is used to extract the main template type, e.g. in `taxonomy-books` extracts the `taxonomy`", "type": "string", "required": false } } } ], "_links": { "self": [ { "href": "https://therift.se/wp-json/wp/v2/template-parts/lookup" } ] } }, "/wp/v2/template-parts/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)": { "namespace": "wp/v2", "methods": [ "GET", "POST", "PUT", "PATCH", "DELETE" ], "endpoints": [ { "methods": [ "GET" ], "args": { "id": { "description": "The id of a template", "type": "string", "required": false }, "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", "enum": [ "view", "embed", "edit" ], "default": "view", "required": false } } }, { "methods": [ "POST", "PUT", "PATCH" ], "args": { "id": { "description": "The id of a template", "type": "string", "required": false }, "slug": { "description": "Unique slug identifying the template.", "type": "string", "minLength": 1, "pattern": "[a-zA-Z0-9_\\%-]+", "required": false }, "theme": { "description": "Theme identifier for the template.", "type": "string", "required": false }, "type": { "description": "Type of template.", "type": "string", "required": false }, "content": { "description": "Content of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit" ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", "context": [ "edit" ], "readonly": true } }, "required": false }, "title": { "description": "Title of template.", "type": [ "object", "string" ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", "context": [ "view", "edit", "embed" ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", "context": [ "view", "edit", "embed" ], "readonly": true } }, "required": false }, "description": { "description": "Description of template.", "type": "string", "required": false }, "status": { "description": "Status of template.", "type": "string", "enum": [ "publish", "future", "draft", "pending", "private" ], "required": false }, "author": { "description": "The ID for the author of the template.", "type": "integer", "required": false }, "area": { "description": "Where the template part is intended for use (header, footer, etc.)", "type": "string", "required": false } } }, { "methods": [ "DELETE" ], "args": { "id": { "description": "The id of a template", "type": "string", "required": false }, "force": { "type": "boolean", "default": false, "description": "Whether to bypass Trash and force deletion.", "required": false } } } ] } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/deus-h/claudeus-wp-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server