list_schemas

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

List SchemaStore catalog entries. Optional case-insensitive filter on name/description/fileMatch.

Parameters

NameTypeRequiredDescription
filterstringnoe.g. “github”, “tsconfig”, “openapi”
limitnumberno1-500 (default 50)

Example call

Arguments

{
  "filter": "github",
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/schemastore/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_schemas","arguments":{"filter":"github","limit":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_schemas', {
  "filter": "github",
  "limit": 10
});

More examples

{
  "filter": "openapi"
}

Response shape

Always returns: total, matches, results

FieldTypeDescription
totalnumberTotal number of schemas in catalog
matchesnumberNumber of schemas matching the filter
resultsarrayFiltered catalog entries (up to limit)
Full JSON Schema
{
  "type": "object",
  "properties": {
    "total": {
      "type": "number",
      "description": "Total number of schemas in catalog"
    },
    "matches": {
      "type": "number",
      "description": "Number of schemas matching the filter"
    },
    "results": {
      "type": "array",
      "description": "Filtered catalog entries (up to limit)",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Schema name"
          },
          "description": {
            "type": "string",
            "description": "Schema description"
          },
          "url": {
            "type": "string",
            "description": "Schema URL"
          },
          "fileMatch": {
            "type": "array",
            "description": "Glob patterns matching filenames",
            "items": {
              "type": "string"
            }
          },
          "versions": {
            "type": "object",
            "description": "Schema versions mapping",
            "additionalProperties": {
              "type": "string"
            }
          }
        },
        "required": [
          "name",
          "url"
        ]
      }
    }
  },
  "required": [
    "total",
    "matches",
    "results"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "schemastore": {
      "url": "https://gateway.pipeworx.io/schemastore/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026