layer_info

Pack: arcgis-mckinney · Endpoint: https://gateway.pipeworx.io/arcgis-mckinney/mcp

Get an ArcGIS Feature/Map Service layer’s schema by url: fields (name + type), geometry type, total record count, and capabilities.

Parameters

NameTypeRequiredDescription
urlstringyesFeature/Map Service layer url, e.g. ”…/FeatureServer/0”.

Example call

Arguments

{
  "url": "https://services.arcgisonline.com/arcgis/rest/services/McKinneyGIS/FeatureServer/0"
}

curl

curl -X POST https://gateway.pipeworx.io/arcgis-mckinney/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"layer_info","arguments":{"url":"https://services.arcgisonline.com/arcgis/rest/services/McKinneyGIS/FeatureServer/0"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('layer_info', {
  "url": "https://services.arcgisonline.com/arcgis/rest/services/McKinneyGIS/FeatureServer/0"
});

Connect

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

{
  "mcpServers": {
    "arcgis-mckinney": {
      "url": "https://gateway.pipeworx.io/arcgis-mckinney/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 10, 2026