← WebMCP Directory

Tool tree

colinmichaels.com

Media & Personal
https://colinmichaels.com/
Articles and topic guides about gadgets, technology, AI, drone videos, recovery stories, and creator projects.
Explore capabilities

Tools verified

get_public_articleAnswer

Read-only lookup of one published article by its canonical https://colinmichaels.com/blog/... URL. Returns citation metadata and an excerpt, never drafts or full private CMS content.

View tool JSON
{
  "name": "get_public_article",
  "kind": "answer",
  "impl": "imperative",
  "description": "Read-only lookup of one published article by its canonical https://colinmichaels.com/blog/... URL. Returns citation metadata and an excerpt, never drafts or full private CMS content.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "canonicalUrl": {
        "type": "string",
        "description": "The canonical ColinMichaels.com article URL with no query string or fragment."
      }
    },
    "required": [
      "canonicalUrl"
    ],
    "additionalProperties": false
  }
}
get_public_topic_guideAnswer

Read-only lookup of one canonical ColinMichaels.com topic guide. Returns the guide description, canonical URL, and supported search terms.

View tool JSON
{
  "name": "get_public_topic_guide",
  "kind": "answer",
  "impl": "imperative",
  "description": "Read-only lookup of one canonical ColinMichaels.com topic guide. Returns the guide description, canonical URL, and supported search terms.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "topicSlug": {
        "type": "string",
        "enum": [
          "ai-setup",
          "recovery-planning",
          "angular-firebase-architecture",
          "labs-projects",
          "gadgets-toys",
          "drones-fpv"
        ],
        "description": "The canonical public topic slug."
      }
    },
    "required": [
      "topicSlug"
    ],
    "additionalProperties": false
  }
}
search_public_contentAnswer

Read-only search of published ColinMichaels.com articles and public topic guides. Returns at most five canonical results with citation metadata. Do not use for drafts, private CMS data, or write actions.

View tool JSON
{
  "name": "search_public_content",
  "kind": "answer",
  "impl": "imperative",
  "description": "Read-only search of published ColinMichaels.com articles and public topic guides. Returns at most five canonical results with citation metadata. Do not use for drafts, private CMS data, or write actions.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "A focused public-content search query between 2 and 160 characters."
      }
    },
    "required": [
      "query"
    ],
    "additionalProperties": false
  }
}