← WebMCP Directory

Tool tree

python.robertdevore.com

Health & Education
https://python.robertdevore.com/
A complete path from Python beginner to professional developer.
Explore capabilities

Tools verified

page: Every page

get_site_infoAnswer

Describe this public static site, its navigation, and available content collections.

View tool JSON
{
  "name": "get_site_info",
  "kind": "answer",
  "impl": "imperative",
  "description": "Describe this public static site, its navigation, and available content collections.",
  "inputSchema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {}
  },
  "page": "/"
}
search_siteAnswer

Search concise public site records. Use a returned ID or URL with get_content.

View tool JSON
{
  "name": "search_site",
  "kind": "answer",
  "impl": "imperative",
  "description": "Search concise public site records. Use a returned ID or URL with get_content.",
  "inputSchema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "query": {
        "type": "string",
        "minLength": 1,
        "maxLength": 200
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 10
      },
      "content_type": {
        "type": "string",
        "minLength": 1,
        "maxLength": 64
      }
    },
    "required": [
      "query"
    ]
  },
  "page": "/"
}
list_contentAnswer

List public records from one discovered type, optionally filtered by taxonomy labels.

View tool JSON
{
  "name": "list_content",
  "kind": "answer",
  "impl": "imperative",
  "description": "List public records from one discovered type, optionally filtered by taxonomy labels.",
  "inputSchema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "type": {
        "type": "string",
        "minLength": 1,
        "maxLength": 64
      },
      "taxonomy": {
        "type": "object",
        "maxProperties": 3,
        "additionalProperties": {
          "type": "array",
          "minItems": 1,
          "maxItems": 5,
          "items": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          }
        }
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 10
      }
    },
    "required": [
      "type"
    ]
  },
  "page": "/"
}
get_contentAnswer

Retrieve one known public record by exact Kujo ID or same-origin URL. Returns no HTML.

View tool JSON
{
  "name": "get_content",
  "kind": "answer",
  "impl": "imperative",
  "description": "Retrieve one known public record by exact Kujo ID or same-origin URL. Returns no HTML.",
  "inputSchema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "id": {
        "type": "string",
        "minLength": 1,
        "maxLength": 256
      },
      "url": {
        "type": "string",
        "minLength": 1,
        "maxLength": 2048
      }
    },
    "oneOf": [
      {
        "required": [
          "id"
        ]
      },
      {
        "required": [
          "url"
        ]
      }
    ]
  },
  "page": "/"
}