{
  "version": "1.0.0",
  "name": "GeoRevelo WebMCP Provider",
  "description": "In-browser Model Context Protocol tools for visual geolocation and OSINT investigation.",
  "homepage": "https://georevelo.com",
  "documentation": "https://georevelo.com/docs",
  "tools": [
    {
      "name": "georevelo_visual_search",
      "description": "Search and geolocate visual landmarks, mountain horizons, and urban environments.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Landmark name, location query, or image context"
          }
        },
        "required": [
          "query"
        ]
      }
    },
    {
      "name": "georevelo_navigate",
      "description": "Navigate to GeoRevelo dashboard, map command center, documentation, or pricing.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "path": {
            "type": "string",
            "description": "Target page route, e.g. /dashboard, /docs, /pricing, /login"
          }
        },
        "required": [
          "path"
        ]
      }
    },
    {
      "name": "georevelo_extract_exif",
      "description": "Extract embedded camera EXIF metadata, timestamps, and GPS coordinates from target imagery.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "image_url": {
            "type": "string",
            "description": "HTTP URL of the target photo to analyze"
          }
        },
        "required": [
          "image_url"
        ]
      }
    }
  ]
}