{
  "spec": "webmcp/0.1",
  "version": "1.0.0",
  "name": "Dondi Bogusky",
  "description": "Personal publishing site for Dondi Bogusky, focused on notes, projects, portfolio work, and practical web development decisions.",
  "url": "https://dondibogusky.com/",
  "documentation": "https://dondibogusky.com/notes/webmcp-site-search/",
  "publisher": {
    "name": "Dondi Bogusky",
    "url": "https://dondibogusky.com/"
  },
  "tools": [
    {
      "name": "site-search",
      "description": "Search notes, projects, portfolio entries, and site pages by keyword.",
      "url": "https://dondibogusky.com/search/",
      "method": "GET",
      "authentication": {
        "type": "none"
      },
      "inputSchema": {
        "type": "object",
        "properties": {
          "q": {
            "type": "string",
            "description": "Search query.",
            "minLength": 2
          }
        },
        "required": ["q"]
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string"
          },
          "totalResults": {
            "type": "number"
          },
          "results": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "title": {
                  "type": "string"
                },
                "url": {
                  "type": "string",
                  "format": "uri"
                },
                "excerpt": {
                  "type": "string"
                }
              },
              "required": ["title", "url", "excerpt"]
            }
          }
        },
        "required": ["query", "totalResults", "results"]
      },
      "annotations": {
        "readOnlyHint": true
      }
    }
  ],
  "resources": [
    {
      "name": "WebMCP implementation note",
      "url": "https://dondibogusky.com/notes/webmcp-site-search/",
      "description": "Implementation context for the site's WebMCP discovery and search tool."
    },
    {
      "name": "llms.txt",
      "url": "https://dondibogusky.com/llms.txt",
      "description": "AI-readable site map and guidance for assistants."
    },
    {
      "name": "rss",
      "url": "https://dondibogusky.com/rss.xml",
      "description": "RSS feed for published notes."
    },
    {
      "name": "sitemap",
      "url": "https://dondibogusky.com/sitemap.xml",
      "description": "Sitemap for canonical public pages."
    }
  ]
}
