live · Developer Tools · JSON · API for agents
Search the documentation for relevant pages and content.
{
"name": "search_docs",
"kind": "read",
"impl": "imperative",
"description": "Search the documentation for relevant pages and content.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query"
}
},
"required": [
"query"
]
}
}Open an agent skill document by name.
{
"name": "open_skill",
"kind": "action",
"impl": "imperative",
"description": "Open an agent skill document by name.",
"inputSchema": {
"type": "object",
"properties": {
"skill_name": {
"type": "string",
"description": "The slug of the skill to open"
}
},
"required": [
"skill_name"
]
}
}Returns information about the current WebMCP documentation page: title, URL, headings, link count, and navigation structure.
{
"name": "get_docs_info",
"kind": "read",
"impl": "imperative",
"description": "Returns information about the current WebMCP documentation page: title, URL, headings, link count, and navigation structure.",
"inputSchema": {
"type": "object",
"properties": {
"include_headings": {
"type": "boolean",
"description": "Include the list of section headings (default: true)"
},
"include_links": {
"type": "boolean",
"description": "Include outbound link URLs (default: false)"
}
}
}
}