list_browsers
Pack: caniuse · Endpoint: https://gateway.pipeworx.io/caniuse/mcp
Return all browser IDs tracked by caniuse (e.g. chrome, safari, firefox, edge, ios_saf) with their recent version strings; use IDs with the support tool.
Example call
Arguments
{}
curl
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":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_browsers', {});
Response shape
Always returns: count, browsers
| Field | Type | Description |
|---|---|---|
count | number | Total number of browsers |
browsers | array | List 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.