D

docs.mcp-b.ai

Documentation for MCP-B / WebMCP. The docs site ships WebMCP tools so an agent can search the docs, open skills, and read site info directly.

2read
1action
https://docs.mcp-b.ai/

live · Developer Tools · JSON · API for agents

Tools 3 tools

search_docsread

Search the documentation for relevant pages and content.

View tool JSON
{
  "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_skillaction

Open an agent skill document by name.

View tool JSON
{
  "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"
    ]
  }
}
get_docs_inforead

Returns information about the current WebMCP documentation page: title, URL, headings, link count, and navigation structure.

View tool JSON
{
  "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)"
      }
    }
  }
}