{
  "name": "Dehradun Tourism MCP Server",
  "version": "1.0.0",
  "description": "Model Context Protocol (MCP) server providing tourist attraction data, cultural highlights, and destination guides for Dehradun, Uttarakhand, India.",
  "homepage": "https://dehradun1.vercel.app",
  "documentation": "https://dehradun1.vercel.app/docs/api",
  "endpoint": "https://dehradun1.vercel.app/.well-known/mcp",
  "transport": {
    "type": "streamable-http",
    "url": "https://dehradun1.vercel.app/.well-known/mcp",
    "fallback": {
      "type": "sse",
      "url": "https://dehradun1.vercel.app/.well-known/mcp"
    }
  },
  "capabilities": {
    "tools": {
      "list": true,
      "call": true
    },
    "resources": {
      "list": true,
      "read": true
    }
  },
  "tools": [
    {
      "name": "get_places",
      "description": "Retrieve a list of tourist attractions, natural spots, temples, and historical landmarks in Dehradun with optional category filtering and search.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "description": "Optional category filter ('nature', 'heritage', 'spiritual', 'institutional', 'recreation')",
            "enum": ["nature", "heritage", "spiritual", "institutional", "recreation"]
          },
          "search": {
            "type": "string",
            "description": "Optional search term matching place name or description"
          }
        }
      }
    },
    {
      "name": "get_place_by_id",
      "description": "Get detailed information for a specific tourist spot in Dehradun by its slug (e.g. 'robbers-cave-guchhupani' or 'forest-research-institute') or index.",
      "inputSchema": {
        "type": "object",
        "required": ["id"],
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique slug or numerical index of the place"
          }
        }
      }
    },
    {
      "name": "get_city_info",
      "description": "Get essential facts, mythological history, population, weather guide, and travel overview for Dehradun.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_views",
      "description": "Fetch current live visitor view counter statistics for the Dehradun Tourism portal.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ]
}
