resource
Pack: datagov-au · Endpoint: https://gateway.pipeworx.io/datagov-au/mcp
Single resource (downloadable file) by id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
curl -X POST https://gateway.pipeworx.io/datagov-au/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"resource","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Resource UUID |
name | string | Resource name |
description | string | Resource description |
url | string | Resource download URL |
format | string | File format (e.g. CSV, JSON) |
size | number | File size in bytes |
last_modified | string | ISO 8601 modification timestamp |
hash | string | File hash value |
package_id | string | Parent package UUID |
created | string | ISO 8601 creation timestamp |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Resource UUID"
},
"name": {
"type": "string",
"description": "Resource name"
},
"description": {
"type": "string",
"description": "Resource description"
},
"url": {
"type": "string",
"description": "Resource download URL"
},
"format": {
"type": "string",
"description": "File format (e.g. CSV, JSON)"
},
"size": {
"type": "number",
"description": "File size in bytes"
},
"last_modified": {
"type": "string",
"description": "ISO 8601 modification timestamp"
},
"hash": {
"type": "string",
"description": "File hash value"
},
"package_id": {
"type": "string",
"description": "Parent package UUID"
},
"created": {
"type": "string",
"description": "ISO 8601 creation timestamp"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"datagov-au": {
"url": "https://gateway.pipeworx.io/datagov-au/mcp"
}
}
}
See Getting Started for client-specific install steps.