search

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

Search features by title / keyword.

Parameters

NameTypeRequiredDescription
querystringyes
limitnumberno1-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

FieldTypeDescription
querystringSearch query normalized to lowercase
countnumberNumber of results returned
featuresarrayMatching 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.

Regenerated from source · build May 21, 2026