{
  "serverInfo": {
    "name": "MyChart",
    "version": "1.0.0"
  },
  "description": "Create shareable Spotify and Last.fm top 10 charts, album collages, custom music charts, and music reviews.",
  "transport": {
    "type": "webmcp",
    "endpoint": "https://www.mychart.top/"
  },
  "capabilities": {
    "tools": true,
    "resources": false,
    "prompts": false
  },
  "tools": [
    {
      "name": "mychart.search_music",
      "description": "Search music metadata for custom MyChart charts.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string"
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 10
          }
        },
        "required": [
          "query"
        ]
      }
    },
    {
      "name": "mychart.open_tool",
      "description": "Open a MyChart tool by name.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string",
            "enum": [
              "top10",
              "collage",
              "review",
              "custom-chart",
              "streams"
            ]
          }
        },
        "required": [
          "tool"
        ]
      }
    }
  ]
}