lookup

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

Exact-name lookup against the catalog (case-insensitive).

Parameters

NameTypeRequiredDescription
namestringyese.g. “package.json”

Example call

Arguments

{
  "name": "package.json"
}

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":"lookup","arguments":{"name":"package.json"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('lookup', {
  "name": "package.json"
});

More examples

{
  "name": "tsconfig"
}

Response shape

Always returns: name, result

FieldTypeDescription
namestringSearched schema name (case-insensitive)
resultunknown
Full JSON Schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Searched schema name (case-insensitive)"
    },
    "result": {
      "oneOf": [
        {
          "type": "null",
          "description": "No match found"
        },
        {
          "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": [
    "name",
    "result"
  ]
}

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