resource_meta

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

Fetch the schema/metadata for a data.gov.in resource by resourceId: title, publishing org, sector,

Parameters

NameTypeRequiredDescription
_apiKeystringyesdata.gov.in API key
resourceIdstringyesThe dataset resource UUID from its data.gov.in page (e.g. “9ef84268-d588-465a-a308-a864a43d0070”).

Example call

Arguments

{
  "_apiKey": "your-data-gov-in-api-key",
  "resourceId": "9ef84268-d588-465a-a308-a864a43d0070"
}

curl

curl -X POST https://gateway.pipeworx.io/data-gov-in/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"resource_meta","arguments":{"_apiKey":"your-data-gov-in-api-key","resourceId":"9ef84268-d588-465a-a308-a864a43d0070"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('resource_meta', {
  "_apiKey": "your-data-gov-in-api-key",
  "resourceId": "9ef84268-d588-465a-a308-a864a43d0070"
});

Connect

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

{
  "mcpServers": {
    "data-gov-in": {
      "url": "https://gateway.pipeworx.io/data-gov-in/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 28, 2026