{
  "name": "Dehradun Tourism MCP Server",
  "version": "1.0.0",
  "protocolVersion": "2024-11-05",
  "description": "Model Context Protocol (MCP) server providing tourist attraction data, cultural highlights, and destination guides for Dehradun, Uttarakhand, India on Vercel.",
  "homepage": "https://dehradun1.vercel.app",
  "documentation": "https://dehradun1.vercel.app/docs/api",
  "endpoint": "https://dehradun1.vercel.app/.well-known/mcp",
  "transports": [
    {
      "type": "streamable-http",
      "url": "https://dehradun1.vercel.app/.well-known/mcp"
    },
    {
      "type": "sse",
      "url": "https://dehradun1.vercel.app/api/mcp"
    }
  ],
  "capabilities": {
    "tools": {
      "list": true,
      "call": true,
      "listChanged": false
    },
    "resources": {
      "list": true,
      "read": true,
      "subscribe": false,
      "listChanged": false
    },
    "prompts": {
      "list": true,
      "get": true,
      "listChanged": false
    },
    "logging": {}
  },
  "instructions": "Official MCP server for Dehradun Tourism (dehradun1.vercel.app). Call get_places to discover attractions, get_place_by_id for spot details, and get_city_info for Doon Valley travel context.",
  "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"
          },
          "limit": {
            "type": "integer",
            "description": "Maximum number of places to return (default 50)",
            "default": 50
          },
          "offset": {
            "type": "integer",
            "description": "Offset index for pagination (default 0)",
            "default": 0
          }
        }
      }
    },
    {
      "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": {}
      }
    }
  ],
  "resources": [
    {
      "uri": "dehradun://places",
      "name": "Dehradun Tourist Attractions Catalog",
      "description": "Complete structured dataset of 17 tourist destinations in Dehradun including coordinates, fees, and descriptions",
      "mimeType": "application/json"
    },
    {
      "uri": "dehradun://llms.txt",
      "name": "Dehradun LLM Agent Guide",
      "description": "Machine-readable context summary and entity guide for Dehradun Tourism",
      "mimeType": "text/markdown"
    },
    {
      "uri": "dehradun://openapi.json",
      "name": "OpenAPI 3.1.0 Specification",
      "description": "Full OpenAPI 3.1.0 REST API schema for dehradun1.vercel.app",
      "mimeType": "application/json"
    }
  ],
  "prompts": [
    {
      "name": "plan_dehradun_trip",
      "description": "Generate a customized travel itinerary for visiting Dehradun, Uttarakhand",
      "arguments": [
        {
          "name": "days",
          "description": "Duration of the trip in days (1, 2, or 3 days)",
          "required": false
        },
        {
          "name": "theme",
          "description": "Travel preference: 'nature', 'spiritual', 'heritage', or 'family'",
          "required": false
        }
      ]
    },
    {
      "name": "find_places_by_interest",
      "description": "Discover the best spots in Dehradun matching specific traveler interests",
      "arguments": [
        {
          "name": "interest",
          "description": "Traveler interest (e.g., photography, waterfalls, peace, cafes, caves)",
          "required": true
        }
      ]
    }
  ]
}
