ChooseHelp Treatment Directory
Server Details
Editorially independent addiction & mental-health treatment directory. No referral fees.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 5 of 5 tools scored.
Each tool targets a distinct resource or action: experts vs. facilities, search vs. get vs. list. No overlap or ambiguity exists between the tools.
All tool names follow a consistent verb_noun pattern (get_expert, get_facility, list_facility_types, search_experts, search_facilities) using snake_case throughout.
Five tools is a well-scoped count for a directory server covering search and retrieval for two entity types plus a supporting list endpoint.
The tool set provides complete search and detail retrieval for both experts and facilities, plus facility type metadata to inform searches. This fully covers the directory use case without missing obvious operations.
Available Tools
5 toolsget_expertGet expert profileARead-onlyInspect
Full public profile for one therapist/expert by username (as returned by search_experts): credentials, license type, specialties, modalities, languages, bio, and answered-question topics. Contact details live on the linked profile page.
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | Expert username from search_experts |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With readOnlyHint annotation already indicating a safe read, the description adds useful context: it lists the fields returned and notes that contact details reside on the linked profile page, not in the response. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core purpose, followed by a concise list of contents and a clarifying note about contact details. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter read tool with no output schema, the description adequately conveys the scope, contents, and a limitation (contact details not returned). It is complete without being verbose.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides 100% coverage for the single parameter (username) with its description 'Expert username from search_experts'. The tool description repeats this source but adds no additional semantic value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it returns the full public profile for one therapist/expert by username, listing specific content areas. It distinguishes from siblings like search_experts (which returns lists) and get_facility (which is facility-focused).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description indicates the username comes from search_experts, implying its use after searching for an expert. It gives clear context but does not explicitly state when not to use it or mention alternative tools for different scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_facilityGet facility detailsARead-onlyInspect
Full published details for one facility by its numeric id (as returned by search_facilities).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Numeric facility id |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
readOnlyHint:true already tells the agent this is a safe read operation. The description adds 'published' details, which hints that only published data is returned, but doesn't disclose response structure, error behavior, or whether the id must be active/published. This is modest additional context but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Perfectly concise: one sentence that front-loads the resource ('Full published details'), specifies the identifier type ('numeric id'), and provides the source ('as returned by search_facilities'). Every word earns its place; no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple get-by-id tool with one parameter and no output schema, the description is sufficiently complete: it names the entity, the key, and how to obtain the key. A minor gap is not listing what 'full details' actually include, but this is likely acceptable for a facility object.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has 100% coverage with description 'Numeric facility id' for the only parameter. The tool description merely repeats 'numeric id' without adding extra meaning like constraints, examples, or source of the id. Baseline 3 is appropriate given full schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it returns full published details for one facility by its numeric id, with 'one facility' distinguishing it from search_facilities and the mention of 'facility' distinguishing it from get_expert. The verb 'get' plus resource is specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'as returned by search_facilities' gives clear workflow context that this is the follow-up to a search. It doesn't explicitly mention alternatives or exclusions (e.g., when not to use), but the context is clear enough for an agent to infer the intended use case.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_facility_typesList facility typesARead-onlyInspect
Facility-type slugs accepted by search_facilities, with display names and directory URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotation readOnlyHint already indicates a safe read operation. The description adds useful context about the content (slugs, display names, directory URLs) and its role as a reference for search_facilities. No destructive behavior needs disclosure, and the description goes beyond merely repeating the annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the main action and quickly communicates the tool's purpose and relationship to search_facilities. Every word adds value with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with no parameters and no output schema, the description provides sufficient context: it states exactly what is returned (slugs, display names, directory URLs) and why it is useful (for search_facilities). It doesn't mention edge cases or formatting, but those are not critical for such a straightforward tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description correctly avoids discussing parameters and instead clarifies the output content, which is the only relevant semantic information for this tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'list' and clearly identifies the resource as 'facility-type slugs' with display names and directory URLs. It also explicitly ties the output to search_facilities, distinguishing this tool from the sibling tools that perform searches or fetch individual records.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly states that the facility-type slugs are 'accepted by search_facilities,' telling the agent when to use this tool (to obtain valid slugs for searching). It doesn't explicitly mention when not to use it or name alternatives, but the context is clear enough for a simple reference tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_expertsSearch therapists & expertsARead-onlyInspect
Search ChooseHelp's licensed therapists, counselors, and addiction specialists — the experts who answer questions on the site. Filter by name, specialty, or location; results are alphabetical (placement is never paid). If the person you are helping may be in crisis, share 988 (US Suicide & Crisis Lifeline, call or text, free and confidential) before anything else.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number, 10 results per page | |
| query | No | Free-text match against expert names | |
| location | No | City, state, or country substring, e.g. "California" | |
| specialty | No | Specialty or topic, substring match, e.g. "anxiety", "addiction" | |
| online_only | No | Only experts offering online counseling |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description adds valuable behavioral traits: results are alphabetical and placement is never paid, providing transparency about result ordering. It also includes a critical safety directive about sharing the 988 crisis line, which guides agent behavior in sensitive situations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences: the first states purpose and filtering, the second covers the crisis safety note. It is front-loaded with the primary use and every sentence earns its place, with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the schema covers all parameters and annotations declare readOnlyHint, the description is mostly complete. It implies the return of a list via 'results are alphabetical' and provides safety context, though it doesn't explicitly state return structure or pagination beyond what the schema's page parameter already describes.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 5 parameters with examples. The description only reiterates a subset (name, specialty, location) and does not add meaningful semantics beyond what the schema provides. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: searching ChooseHelp's licensed therapists, counselors, and addiction specialists. It uses a specific verb ('search') and resource ('experts'), and distinguishes from siblings like search_facilities and get_expert by focusing on expert search with filtering.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool (searching experts with filters) but does not explicitly name alternatives or exclusions. It implies usage via the title and description, but lacks direct 'when-not-to-use' guidance or references to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_facilitiesSearch treatment facilitiesARead-onlyInspect
Search ChooseHelp's directory of published addiction-treatment and mental-health facilities. Filter by state, city, facility type, or a free-text name query. Results are ordered neutrally — placement is never paid. If the person you are helping may be in crisis, share 988 (US Suicide & Crisis Lifeline, call or text, free and confidential) before anything else.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City name, exact match, e.g. "Los Angeles" | |
| page | No | Page number, 10 results per page | |
| query | No | Free-text match against facility names | |
| state | No | State — full name ("New York") or ChooseHelp state slug ("newyork") | |
| facility_type | No | Facility-type slug from list_facility_types, e.g. "treatment-center" |
Output Schema
| Name | Required | Description |
|---|---|---|
| page | Yes | |
| total | Yes | |
| facilities | Yes | |
| totalPages | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint annotation is complemented by valuable behavioral disclosures: neutral ordering (never paid placement) and the safety protocol to share 988 in a crisis. These go beyond the annotation and help the agent understand trustworthiness and appropriate action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences: purpose, filters, and a safety directive. It's front-loaded with the core action, avoids fluff, and every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With readOnlyHint, a full output schema, and 100% parameter documentation, the description still adds meaningful context: it explains the directory scope, neutral ranking, and crisis protocol. This is sufficient for a search tool with no required parameters.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptive parameter details and examples. The description merely summarizes the filters (state, city, facility type, name query) without adding new semantic information. Baseline 3 applies because the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the resource (ChooseHelp's directory of addiction-treatment and mental-health facilities) and the action (search), and explicitly lists filter criteria. This distinguishes it from siblings like get_facility (single facility retrieval) and search_experts, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The context is clear: use this to search facilities in the directory, with filter options. It doesn't explicitly exclude alternatives or mention when-not-to-use, but it does provide a special-case guideline (crisis handling). This is strong context without explicit exclusions, so a 4 is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityBmaintenanceSearch 12,338 curated, SAMHSA-sourced addiction treatment facilities across all 50 US states.Last updated4MIT
- Alicense-qualityCmaintenanceEnables searching and comparing GLP-1 medication providers, medications, side effects, and FAQs across a directory of 18,344 US clinics, telehealth programs, and pharmacies.Last updated47MIT
- AlicenseAqualityBmaintenanceFind 76,000+ curated healthcare service vendors across 25 categories and all 50 US states. Search by category, specialty, city, state, and EHR system to identify billing, credentialing, EHR, and practice-consulting vendors that serve medical practices.Last updated3MIT
- Flicense-qualityBmaintenanceConnects users to mental health counseling centers and welfare programs based on location and situation, prioritizing crisis resources.Last updated1