{
 "schema_version": "v1",
 "name": "travelbots.org",
 "description": "Travel MCP server catalogue — search verified travel tools by task, category, and complexity.",
 "capabilities": {
  "tools": [
   {
    "name": "search_servers",
    "description": "Search the travel MCP catalogue. Filters: query text, category, complexity (simple|complex).",
    "inputSchema": {
     "type": "object",
     "properties": {
      "query": {
       "type": "string"
      },
      "category": {
       "type": "string",
       "enum": [
        "flights-search",
        "flights-booking",
        "group-travel",
        "hotels",
        "split-stay",
        "rail",
        "activities-tours",
        "visa-docs",
        "disruption-claims",
        "ground-ancillaries"
       ]
      },
      "complexity": {
       "type": "string",
       "enum": [
        "simple",
        "complex"
       ]
      }
     }
    }
   },
   {
    "name": "get_server",
    "description": "Get one server's full listing by slug.",
    "inputSchema": {
     "type": "object",
     "properties": {
      "slug": {
       "type": "string"
      }
     },
     "required": [
      "slug"
     ]
    }
   },
   {
    "name": "list_categories",
    "description": "List the 10 travel MCP categories with counts.",
    "inputSchema": {
     "type": "object",
     "properties": {}
    }
   }
  ]
 },
 "endpoints": {
  "catalogue_json": "/data/listings.json",
  "category_index": "/cat/",
  "humans": "/"
 }
}