instance_info

Pack: opendatasoft · Endpoint: https://gateway.pipeworx.io/opendatasoft/mcp

Fetch catalog-level metadata for an Opendatasoft portal instance (total dataset count, themes, languages); defaults to public.opendatasoft.com.

Parameters

NameTypeRequiredDescription
instancestringno

Example call

Arguments

{
  "instance": "public.opendatasoft.com"
}

curl

curl -X POST https://gateway.pipeworx.io/opendatasoft/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"instance_info","arguments":{"instance":"public.opendatasoft.com"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('instance_info', {
  "instance": "public.opendatasoft.com"
});

Response shape

FieldTypeDescription
namestringInstance name
datasets_countnumberTotal number of datasets
records_countnumberTotal number of records across all datasets
Full JSON Schema
{
  "type": "object",
  "description": "Instance metadata and catalog information",
  "properties": {
    "name": {
      "type": "string",
      "description": "Instance name"
    },
    "datasets_count": {
      "type": "number",
      "description": "Total number of datasets"
    },
    "records_count": {
      "type": "number",
      "description": "Total number of records across all datasets"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "opendatasoft": {
      "url": "https://gateway.pipeworx.io/opendatasoft/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026