list_browsers

Pack: caniuse · Endpoint: https://gateway.pipeworx.io/caniuse/mcp

Browser ids + version tracks.

Example call

curl -X POST https://gateway.pipeworx.io/caniuse/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_browsers","arguments":{}}}'

Response shape

Always returns: count, browsers

FieldTypeDescription
countnumberTotal number of browsers
browsersarrayList of browsers with versions
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Total number of browsers"
    },
    "browsers": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Browser identifier"
          },
          "browser": {
            "type": "string",
            "description": "Browser name"
          },
          "versions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Latest up to 15 tracked versions"
          }
        },
        "required": [
          "id",
          "browser",
          "versions"
        ]
      },
      "description": "List of browsers with versions"
    }
  },
  "required": [
    "count",
    "browsers"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "caniuse": {
      "url": "https://gateway.pipeworx.io/caniuse/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026