{
  "server": {
    "name": "Vision Agents",
    "version": "1.0.0",
    "transport": "http"
  },
  "capabilities": {
    "tools": {
      "search_vision_agents": {
        "name": "search_vision_agents",
        "description": "Search across the Vision Agents knowledge base to find relevant information, code examples, API references, and guides. Use this tool when you need to answer questions about Vision Agents, find specific documentation, understand how features work, or locate implementation details. The search returns contextual content with titles and direct links to the documentation pages. If you need the full content of a specific page, use the get_page tool with the page path from the search results.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "query": {
              "type": "string",
              "description": "A query to search the content with."
            }
          },
          "required": [
            "query"
          ]
        },
        "operationId": "mintlify_default_search"
      },
      "get_page_vision_agents": {
        "name": "get_page_vision_agents",
        "description": "Retrieve the full content of a specific documentation page from Vision Agents by its path. Use this tool when you already know the page path (e.g., from search results) and need the complete content of that page rather than just a snippet.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "page": {
              "type": "string",
              "description": "The page path to retrieve (e.g., 'api-reference/create-customer'). Use the page paths returned from the search tool results."
            }
          },
          "required": [
            "page"
          ]
        },
        "operationId": "mintlify_default_get_page"
      }
    },
    "resources": [],
    "prompts": []
  }
}