metadata
Pack: data-ny · Endpoint: https://gateway.pipeworx.io/data-ny/mcp
Resource metadata.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
resource_id | string | yes |
Example call
curl -X POST https://gateway.pipeworx.io/data-ny/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"metadata","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Resource 4x4 ID |
name | string | Resource display name |
description | string | Resource description |
columns | array | Array of column definitions |
Full JSON Schema
{
"type": "object",
"description": "Resource metadata including columns, description, and properties",
"properties": {
"id": {
"type": "string",
"description": "Resource 4x4 ID"
},
"name": {
"type": "string",
"description": "Resource display name"
},
"description": {
"type": "string",
"description": "Resource description"
},
"columns": {
"type": "array",
"description": "Array of column definitions",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Column ID"
},
"name": {
"type": "string",
"description": "Column name"
},
"dataTypeName": {
"type": "string",
"description": "Data type of column"
},
"description": {
"type": "string",
"description": "Column description"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"data-ny": {
"url": "https://gateway.pipeworx.io/data-ny/mcp"
}
}
}
See Getting Started for client-specific install steps.