detroit_layers

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

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

Parameters

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

Example call

Arguments

{
  "service": "crime"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 5, 2026