lookup
Pack: schemastore · Endpoint: https://gateway.pipeworx.io/schemastore/mcp
Exact-name lookup against the catalog (case-insensitive).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | e.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
| Field | Type | Description |
|---|---|---|
name | string | Searched schema name (case-insensitive) |
result | unknown |
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.