{
  "serverInfo": {
    "name": "Radio Picla Network",
    "version": "1.4.4"
  },
  "transport": {
    "type": "streamable-http",
    "endpoint": "https://radio.picla.net/mcp"
  },
  "capabilities": {
    "tools": [
      {
        "name": "search_stations",
        "description": "Search for radio stations by name, country, or style",
        "inputSchema": {
          "type": "object",
          "properties": {
            "query": { "type": "string", "description": "Search query" },
            "country": { "type": "string", "description": "Filter by country code" },
            "style": { "type": "string", "description": "Filter by music style" }
          }
        }
      },
      {
        "name": "get_station",
        "description": "Get details for a specific station by ID",
        "inputSchema": {
          "type": "object",
          "properties": {
            "id": { "type": "number", "description": "Station ID" }
          }
        }
      },
      {
        "name": "play_station",
        "description": "Play a radio station",
        "inputSchema": {
          "type": "object",
          "properties": {
            "id": { "type": "number", "description": "Station ID to play" }
          }
        }
      },
      {
        "name": "toggle_favorite",
        "description": "Toggle a station as favorite",
        "inputSchema": {
          "type": "object",
          "properties": {
            "id": { "type": "number", "description": "Station ID" }
          }
        }
      }
    ],
    "resources": [
      {
        "uri": "https://radio.picla.net/stations",
        "name": "Radio Stations List",
        "description": "Available radio stations"
      }
    ],
    "prompts": []
  }
}