feature

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

Full caniuse record for a feature id (e.g. “css-grid”, “fetch”, “webp”).

Parameters

NameTypeRequiredDescription
namestringyes

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

FieldTypeDescription
idstringFeature identifier
titlestringFeature title
descriptionstringFeature description
statusstringFeature status (standardized, etc.)
categoriesarrayFeature categories
statsobjectSupport stats by browser
notesstringAdditional notes
bugsarrayKnown bugs
linksarrayRelated links
ucprefixbooleanRequires vendor prefix
specstringSpecification URL
parentstringParent feature id
keywordsstringKeywords 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.

Regenerated from source · build May 21, 2026