list_harris_county_facilities
harriscountytx.govRetrieves paginated Harris County parks, libraries, community centers, senior centers, and annexes from the ArcGIS data used by https://harriscountytx.gov, returning every non-empty feature attribute plus map coordinates.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_harris_county_facilities?
Retrieves paginated Harris County parks, libraries, community centers, senior centers, and annexes from the ArcGIS data used by https://harriscountytx.gov, returning every non-empty feature attribute plus map coordinates. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass facility_type, offset, limit and get the result back without maintaining a scraper.
Response
{
"features": [
{}
],
"pagination": {},
"facility_type": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/6a55ea58-f26f-4020-aa77-ff43b2a50aa2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6a55ea58-f26f-4020-aa77-ff43b2a50aa2",
"variables": {
"facility_type": "parks",
"offset": 0,
"limit": 25
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="6a55ea58-f26f-4020-aa77-ff43b2a50aa2") — the "list_harris_county_facilities" function, which retrieves paginated Harris County parks, libraries, community centers, senior centers, and annexes from the ArcGIS data used by https://harriscountytx.gov, returning every non-empty feature attribute plus map coordinates.. It takes facility_type (str), offset (int), limit (int). Return the result as structured JSON.