pet_services_near
Pack: veterinary-fda · Endpoint: https://gateway.pipeworx.io/veterinary-fda/mcp
Find veterinary clinics, emergency vets, dog parks, pet stores, or animal shelters near a place, via OpenStreetMap. Answers “emergency vet near Austin TX”, “dog parks near me”, “pet stores in Denver”, “animal shelters near Chicago”. Pass a place name (city, address, or landmark) — it is geocoded automatically.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
place | string | yes | Place name to search near, e.g. “Austin TX”, “Portland OR”, “downtown Denver”. |
kind | string | no | One of: vet, emergency_vet, dog_park, pet_store, shelter. Default vet. |
radius_km | number | no | Search radius in kilometres (1-50, default 10). |
limit | number | no | Max results (1-50, default 20). |
Example call
Arguments
{
"place": "Austin TX",
"kind": "emergency_vet"
}
curl
curl -X POST https://gateway.pipeworx.io/veterinary-fda/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pet_services_near","arguments":{"place":"Austin TX","kind":"emergency_vet"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pet_services_near', {
"place": "Austin TX",
"kind": "emergency_vet"
});
More examples
{
"place": "Portland OR",
"kind": "dog_park",
"radius_km": 5
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"veterinary-fda": {
"url": "https://gateway.pipeworx.io/veterinary-fda/mcp"
}
}
}
See Getting Started for client-specific install steps.