attom_school_search

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

Find schools near a location. Returns school name, type (public/private), grade levels, distance, and performance rankings.

Parameters

NameTypeRequiredDescription
latitudestringyesLatitude of the search center
longitudestringyesLongitude of the search center
radiusstringnoSearch radius in miles (default 5, max 20)
_apiKeystringyesATTOM API key

Example call

Arguments

{
  "latitude": "39.7392",
  "longitude": "-104.9903",
  "_apiKey": "your-attom-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/attom/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"attom_school_search","arguments":{"latitude":"39.7392","longitude":"-104.9903","_apiKey":"your-attom-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('attom_school_search', {
  "latitude": "39.7392",
  "longitude": "-104.9903",
  "_apiKey": "your-attom-api-key"
});

More examples

{
  "latitude": "40.7128",
  "longitude": "-74.0060",
  "radius": "3",
  "_apiKey": "your-attom-api-key"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "School search results from ATTOM API"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026