denver_layers

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

List the layers of a Denver ArcGIS service (for discovery). Pass a known short name (crime) or a full ArcGIS service path (e.g. “ODC_CRIME_OFFENSES_P/FeatureServer”). Omit service to list the known Denver services. Returns layer id + name to use with denver_query.

Parameters

NameTypeRequiredDescription
servicestringnoShort name (crime) or full ArcGIS service path. Omit to list known services.

Example call

Arguments

{
  "service": "crime"
}

curl

curl -X POST https://gateway.pipeworx.io/data-denver/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"denver_layers","arguments":{"service":"crime"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('denver_layers', {
  "service": "crime"
});

More examples

{
  "service": "ODC_CRIME_OFFENSES_P/FeatureServer"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 6, 2026