feature
Pack: caniuse · Endpoint: https://gateway.pipeworx.io/caniuse/mcp
Full caniuse record for a feature id (e.g. “css-grid”, “fetch”, “webp”).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes |
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":"feature","arguments":{}}}'
Response shape
Always returns: id, title
| Field | Type | Description |
|---|---|---|
id | string | Feature identifier |
title | string | Feature title |
description | string | Feature description |
status | string | Feature status (standardized, etc.) |
categories | array | Feature categories |
stats | object | Support stats by browser |
notes | string | Additional notes |
bugs | array | Known bugs |
links | array | Related links |
ucprefix | boolean | Requires vendor prefix |
spec | string | Specification URL |
parent | string | Parent feature id |
keywords | string | Keywords for search |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Feature identifier"
},
"title": {
"type": "string",
"description": "Feature title"
},
"description": {
"type": "string",
"description": "Feature description"
},
"status": {
"type": "string",
"description": "Feature status (standardized, etc.)"
},
"categories": {
"type": "array",
"items": {
"type": "string"
},
"description": "Feature categories"
},
"stats": {
"type": "object",
"description": "Support stats by browser",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"notes": {
"type": "string",
"description": "Additional notes"
},
"bugs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"description": {
"type": "string"
}
}
},
"description": "Known bugs"
},
"links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"title": {
"type": "string"
}
}
},
"description": "Related links"
},
"ucprefix": {
"type": "boolean",
"description": "Requires vendor prefix"
},
"spec": {
"type": "string",
"description": "Specification URL"
},
"parent": {
"type": "string",
"description": "Parent feature id"
},
"keywords": {
"type": "string",
"description": "Keywords for search"
}
},
"required": [
"id",
"title"
]
}
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.