info.vetclinic/directory
Official8 toolsVetClinic.info — Veterinary Specialty Directory
Find US veterinary specialists. Search clinics, read procedure articles, estimate costs.
Search US veterinary specialists, read procedure articles, and estimate costs.
Captured live from the server via tools/list.
search_clinics
Find veterinary specialty clinics by city + specialty. Returns a ranked shortlist with credentials, address, rating, review count, and a contact action. Promoted listings rank first.
Parameters (4)
- citystringrequired
City slug (e.g. "denver", "austin"). Validate against /api/agents/specialties or list_specialties.
- specialtystringrequired
Specialty slug (e.g. "orthopedic-surgery", "oncology", "emergency-critical-care", "generalist"). Closed set; use list_specialties.
- statestring
Optional 2-letter state slug ("co", "tx", "ca"). Disambiguates same-name cities.
- limitinteger
get_clinic
Fetch a single clinic's full record by slug: credentials, inline reviews, procedures performed, contact action, canonical URL.
Parameters (3)
- slugstringrequired
Clinic slug. Clinic slugs are unique per city, not globally — pair with city + state for disambiguation.
- citystringrequired
City slug.
- statestringrequired
State slug.
get_procedure
Fetch a procedure article with cost band, contraindications, emergency signals, FAQ, citations. When state is supplied, also returns a ranked clinic finder pre-filtered to that state.
Parameters (2)
- slugstringrequired
Procedure slug (e.g. "tplo", "hemilaminectomy", "lymphoma-chop").
- statestring
Optional 2-letter state slug to pre-filter the finder.
list_specialties
Closed-set enum of recognized veterinary specialty slugs. Returns slug, display_name, and credentialing_board.sameAs (when applicable). Always call this before search_clinics if uncertain about specialty mapping.
No parameters.
list_procedures
Published procedure catalog. Returns slug, display_name, also_known_as, specialty_slug for every procedure with a live article.
No parameters.
find_specialists_by_procedure
Convenience: combines get_procedure + state filter. Returns the ranked specialist finder list for a procedure in a given state.
Parameters (3)
- procedurestringrequired
Procedure slug.
- statestringrequired
2-letter state slug.
- limitinteger
estimate_procedure_cost
Anonymous cost estimate. Returns $low–$high range computed from regional + case factors. Deterministic on identical inputs. PII fields are rejected — use quote_for_case for the PII path.
Parameters (3)
- procedure_slugstringrequired
- zipstringrequired
- case_factorsobjectrequired
quote_for_case
Composite tool. Always computes an estimate. When owner_email is also present, additionally submits a confirmation-gated lead and dispatches a confirmation email to the owner (requires X-Agent-Attribution header). When PII is absent, behaves identically to estimate_procedure_cost and returns status="estimate_only".
Parameters (7)
- procedure_slugstringrequired
- zipstringrequired
- case_factorsobjectrequired
Same shape as estimate_procedure_cost.case_factors.
- owner_namestring
Optional. Required if owner_email is present.
- owner_emailstring
Optional. When present, triggers the lead-capture write path and requires X-Agent-Attribution.
- owner_phonestring
Optional.
- case_notesstring
Optional. Free-text notes from the owner for the receiving clinic.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"directory": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://vetclinic.info/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.