UrbanKit County Parcel Atlas
Provides tools to query US county parcel data from ArcGIS REST endpoints, including listing covered counties, finding county endpoints, and constructing owner queries.
@urbankitstudio/mcp-atlas
Query 137 verified US county parcel ArcGIS REST endpoints — owner/APN lookup — via MCP.
An MCP server that gives AI assistants direct access to UrbanKit Studio's atlas of manually verified county parcel GIS services. Ask Claude or Cursor to find the ArcGIS REST endpoint for any covered county, get the exact owner-search query URL, and look up parcel data — without needing to know anything about ArcGIS REST API conventions.
Coverage: 128+ counties across 39 US states (v0.4.0 atlas, updated May 2026).
Quick start
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"mcp-atlas": {
"command": "npx",
"args": ["-y", "@urbankitstudio/mcp-atlas"]
}
}
}Cursor
Add to .cursor/mcp.json in your project root (or ~/.cursor/mcp.json globally):
{
"mcpServers": {
"mcp-atlas": {
"command": "npx",
"args": ["-y", "@urbankitstudio/mcp-atlas"]
}
}
}Install globally (optional)
npm install -g @urbankitstudio/mcp-atlasThen use mcp-atlas as the command instead of npx -y @urbankitstudio/mcp-atlas.
Related MCP server: mcp-arcgis-fauquier
Tools
list_counties
Lists all counties with a verified parcel REST endpoint.
Parameter | Type | Required | Description |
| string | No | Two-letter abbreviation ( |
Example prompt: "List all covered counties in Illinois"
Example output:
ST | County | Slug | Coverage
--------------------------------------------------------------------
IL | Kane | kane-county | owner+APN
IL | Cook | cook-county | APN only
IL | DuPage | dupage-county | owner+APN
...find_county
Fuzzy-matches a county by name or 5-digit FIPS code. Returns endpoint URLs, searchable field names, owner field, sample query, and license info.
Parameter | Type | Required | Description |
| string | Yes | County name ( |
Example prompt: "Find the parcel endpoint for Kane County Illinois"
get_parcel_endpoint
Returns the full ArcGIS REST URL, layer index, searchable fields, owner field, and a ready sample ?where=…&f=json query for a specific county.
Parameter | Type | Required | Description |
| string | Yes | Two-letter abbreviation or full name |
| string | Yes | County name ( |
Example prompt: "Give me the ArcGIS REST endpoint for Cook County Illinois"
build_owner_query
Constructs the exact ArcGIS REST query URL using the county's verified owner/taxpayer field. Uses UPPER(field) LIKE UPPER('%NAME%') — case-insensitive partial match.
Parameter | Type | Required | Description |
| string | Yes | Two-letter abbreviation or full name |
| string | Yes | County name |
| string | Yes | Owner/taxpayer name (partial match) |
Example prompt: "Build an ArcGIS query for properties owned by 'Smith' in Kane County IL"
Example output:
County: Kane, Illinois
Owner field: TaxName
WHERE clause: UPPER(TaxName) LIKE UPPER('%SMITH%')
Query URL:
https://gistech.countyofkane.org/arcgis/rest/services/KanePINList/MapServer/0/query
?where=UPPER(TaxName)%20LIKE%20UPPER('%25SMITH%25')
&outFields=PIN,TaxName,SiteAddress,SiteCity,MailingAddress
&returnGeometry=false&f=json&resultRecordCount=25Example conversation
User: I'm doing due diligence on properties in Kane County, Illinois. Can you find all parcels owned by "Blackstone"?
Claude (using mcp-atlas):
Calls
get_parcel_endpoint→ gets thegistech.countyofkane.orgURL and confirms the owner field isTaxNameCalls
build_owner_querywithowner_name=Blackstone→ returns a ready fetch URLOptionally fetches the URL and formats the parcel results
Atlas coverage
The atlas is maintained by UrbanKit Studio. All endpoints are manually verified. Counties with an owner/taxpayer field support full name-based lookups; PIN-only counties support APN/parcel-number queries.
Full coverage map: https://urbankitstudio.com/parcel-atlas
Data
Atlas data is embedded in the package (no network calls at startup). The underlying @urbankitstudio/atlas SDK is also published separately for programmatic use.
License
MIT — © Leo Yong / UrbanKit Studio
Maintenance
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/LEOyrh/mcp-atlas'
If you have feedback or need assistance with the MCP directory API, please join our Discord server