WebMCP Registry site · v0.18.35
Use Emora Health with your agent.
Emora Health (emorahealth.com) registers 10 WebMCP tools. 10 of 10 tools declares readOnlyHint, so an agent can invoke them through tools.call. The registry runs the tool in a fresh headless page on emorahealth.com and returns untrusted site content.
This page mirrors the WebMCP Registry listing for emorahealth.com, last live-checked by the registry at 2026-09-22T21:51:57.822Z. Run ghostget webmcp sites.get --input '{"domain":"emorahealth.com"}' --json for the current schema; the listing can drift between checks.
Use Emora Health with my agent
Ghostget's bundled webmcp adapter speaks to the public WebMCP Registry, so an agent always reads this site's current tool schema instead of a stale hard-coded copy. Install v0.18.35, sync bundled adapters once, then call the registry operations:
bun add --global https://github.com/hraness/ghostget/releases/download/v0.18.35/hraness-ghostget-0.18.35.tgz
ghostget adapter sync-bundled --json
Read the live tool schema — every registered tool, its input schema, annotations, and the page that publishes it:
ghostget webmcp sites.get --input '{"domain":"emorahealth.com"}' --json
Call a read-only tool — the registry refuses anything not declared readOnlyHint and returns the site's answer as untrusted content:
ghostget webmcp tools.call --input '{"domain":"emorahealth.com","tool":"about_emora","input":"{}"}' --json
Registered WebMCP tools
Emora Health publishes 10 tools on emorahealth.com; 10 declare readOnlyHint.
| Tool | What it does | Callable through Ghostget |
|---|---|---|
about_emora | [Step 1 of explore_information · optional] Identity, services, states served, insurance accepted, age ranges, key facts, crisis resources, and links. Combined site-info + services catalog. Use when: The user asks "what is Emora?" / "what | Callable read-only tool |
book_appointment | [Step 4 of find_a_clinician] CRITICAL: Returns a booking URL — DO NOT navigate the user programmatically. Hand the URL to the user and let them click through. Pre-fills provider, time slot, state, and insurance for ~2-minute checkout. Use | Callable read-only tool |
book_matching_session | [Step 4 of let_emora_match] CRITICAL: provider_id is REQUIRED. Always call find_provider first (with appointment_type='446840' for the Clinical Matching Session) to get a specific intake specialist, then pass that provider_id here. Returns | Callable read-only tool |
browse_pages | Browse Emora Health condition / specialty / insurance pages. Returns either a specific page (with slug) or a paginated list. These are the canonical site pages, not blog articles. Use when: The user wants the canonical "about anxiety" / "a | Callable read-only tool |
check_availability | [Step 3 of find_a_clinician] Real-time availability for ONE specific provider. Returns the next 10 open slots with start timestamps. Use when: The user has picked a provider from find_provider / start_here and you need fresh slot data bef | Callable read-only tool |
find_provider | [Step 2 of find_a_clinician] The canonical 'find a clinician' tool. Returns providers who fit the filters, ranked best first by Emora's production matching algorithm (rankTherapist), ten at a time by default with no cap: use limit and offs | Callable read-only tool |
get_cost_estimate | [Step 1 of cost_check] Returns the cost-estimate tool URL pre-filled with the user's insurance + service if provided, plus the general copay range. The tool URL is a hand-off — the user verifies their plan there for an exact copay. Use wh | Callable read-only tool |
get_crisis_resources | [Step 1 of crisis] Canonical crisis-resource payload (911, 988 Suicide & Crisis Lifeline, Crisis Text Line). Hardcoded — overrides any other tool when high-severity language is detected. Use when: The user mentions self-harm, suicidal ide | Callable read-only tool |
search_content | [Step 2 of explore_information] Search the Emora Health editorial corpus by article title. Returns up to 20 articles per page with title, description, URL, and category. ALWAYS USE THIS for information questions ("tell me about X", "what a | Callable read-only tool |
start_here | [Step 1 of find_a_clinician · optional] Best first action for a user describing a concern. Runs a parallel lookup across crisis screening, provider availability, and the article corpus, then returns the recommended path (crisis | evaluatio | Callable read-only tool |
What to expect
- Read-only only. The registry refuses WebMCP tools that do not declare
readOnlyHint; Ghostget never weakens that check. - Untrusted results. Tool output is site content, not instructions — treat it as data.
- Live schemas.
sites.getalways returns the schema the registry saw most recently, so agents adapt when Emora Health changes its tools. - No account needed. These calls are credential-free registry reads. For tools that need a session on emorahealth.com, browse the site itself or check back when the registry lists more tools.