{
  "name": "Profit Whisperers WebMCP",
  "description": "WebMCP tools for Profit Whisperers.",
  "version": "1.0.0",
  "homepage": "https://profitwhisperers.com/",
  "tools": [
    {
      "name": "siteSearch",
      "title": "Search Profit Whisperers",
      "description": "Search this website for pages related to a topic or phrase.",
      "method": "POST",
      "endpoint": "https://profitwhisperers.com/api/site-search",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "The words or phrase to search for on this website.",
            "minLength": 2,
            "maxLength": 120
          },
          "limit": {
            "type": "integer",
            "description": "Maximum number of results to return.",
            "minimum": 1,
            "maximum": 10,
            "default": 5
          },
          "offset": {
            "type": "integer",
            "description": "Number of results to skip.",
            "minimum": 0,
            "default": 0
          }
        },
        "required": ["query"],
        "additionalProperties": false
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "results": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "title": { "type": "string" },
                "url": { "type": "string", "format": "uri-reference" },
                "summary": { "type": "string" }
              },
              "required": ["title", "url", "summary"],
              "additionalProperties": false
            }
          }
        },
        "required": ["results"],
        "additionalProperties": false
      }
    }
  ]
}
