metadata

Pack: data-ny · Endpoint: https://gateway.pipeworx.io/data-ny/mcp

Resource metadata.

Parameters

NameTypeRequiredDescription
resource_idstringyes

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

FieldTypeDescription
idstringResource 4x4 ID
namestringResource display name
descriptionstringResource description
columnsarrayArray 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.

Regenerated from source · build May 21, 2026