search
Pack: caniuse · Endpoint: https://gateway.pipeworx.io/caniuse/mcp
Search features by title / keyword.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | |
limit | number | no | 1-50 (default 10) |
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":"search","arguments":{}}}'
Response shape
Always returns: query, count, features
| Field | Type | Description |
|---|---|---|
query | string | Search query normalized to lowercase |
count | number | Number of results returned |
features | array | Matching features |
Full JSON Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query normalized to lowercase"
},
"count": {
"type": "number",
"description": "Number of results returned"
},
"features": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Feature identifier"
},
"title": {
"type": "string",
"description": "Feature title"
},
"status": {
"type": "string",
"description": "Feature status"
}
},
"required": [
"id",
"title"
]
},
"description": "Matching features"
}
},
"required": [
"query",
"count",
"features"
]
}
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.