GTH Intelligence - Substance Abuse Treatment Finder
Server Details
Search 12,338 curated, SAMHSA-sourced addiction treatment facilities across all 50 US states.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Crindo2/gth-mcp-server
- GitHub Stars
- 0
- Server Listing
- GTH Intelligence - Substance Abuse Treatment Finder
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.7/5 across 4 of 4 tools scored.
Each tool has a clearly distinct purpose: searching facilities, getting facility details, listing states, and explaining treatment types. No overlap or ambiguity exists.
All tool names follow a consistent verb_noun pattern: get_facility_detail, get_treatment_types, list_states, search_facilities. The verbs and nouns are clear and predictable.
Four tools is well-scoped for a directory-based finder. Each tool earns its place, covering discovery, detailed lookup, domain definitions, and geographic coverage.
The toolset covers the full read-only lifecycle: users can discover states with data, search facilities by multiple criteria, retrieve full profiles, and understand treatment types. No obvious gaps for the stated purpose.
Available Tools
4 toolsget_facility_detailGet Facility DetailARead-onlyIdempotentInspect
Get the full profile of one specific treatment facility: address, phone, programs offered, insurance plans accepted, SAMHSA verification status, and a direct browse URL. Supports partial name matching — returns the best match if multiple facilities contain the query string. Use after search_facilities when the user wants to drill into a named facility.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Full or partial facility name (e.g. 'Betty Ford' or 'Hazelden Betty Ford Center') |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, reducing the burden. The description adds valuable behavioral nuance: 'Supports partial name matching — returns the best match if multiple facilities contain the query string.' This is beyond the annotations, though 'best match' is slightly vague about tie-breaking.
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?
Three sentences with no waste. The first sentence states the core purpose and deliverables, the second explains matching behavior, the third places it in the workflow. Information is front-loaded and each 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?
For a single-parameter, read-only, no-output-schema tool, the description covers the purpose, content, matching behavior, and usage context. With annotations handling safety and idempotency, nothing essential is missing for the agent to select and invoke it correctly.
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%, so baseline is 3. The description enriches the 'name' parameter with matching semantics ('Supports partial name matching — returns the best match if multiple facilities contain the query string'), which is not fully expressed in the schema. It explains the behavior, not just the type/format, adding value over structured fields.
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 opens with a specific verb and resource: 'Get the full profile of one specific treatment facility' and enumerates exact contents (address, phone, programs, insurance, SAMHSA status, browse URL). It explicitly distinguishes itself from search_facilities by specifying drill-down intent, making it unmistakable among siblings.
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?
It gives explicit usage context: 'Use after search_facilities when the user wants to drill into a named facility.' This tells the agent exactly when to invoke it and implicitly when not to (i.e., not for searching or listing). It names the alternative tool, satisfying the top guideline bar.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_treatment_typesGet Treatment Type DefinitionsARead-onlyIdempotentInspect
Get definitions of all treatment program types (Inpatient Rehab, Detox, PHP, IOP, Outpatient, MAT, Counseling, Sober Living) with duration, intensity, and typical fit. Returns markdown-formatted explanations. Use when the user is uncertain which treatment_type to pass to search_facilities, or asks 'what's the difference between X and Y'.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, covering the safety profile. The description adds useful behavioral context by stating the return format ('markdown-formatted explanations') and that it covers 'all' types. This goes beyond annotations without contradicting them.
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 purpose and action, no redundant phrasing. Every word contributes meaning, making it highly efficient.
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?
Despite having no output schema, the description clarifies what the user gets: definitions, duration, intensity, typical fit, and specific program types. This is complete for a zero-parameter reference tool and requires no further elaboration.
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 there is nothing for the description to add. The baseline for no parameters is 4, and the description correctly omits any parameter details since none exist.
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 starts with a specific verb ('Get definitions') and clear resource ('all treatment program types'), enumerating the specific types. It also implicitly distinguishes from sibling tools like search_facilities by focusing on definitions rather than facility lookup.
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?
Explicitly states when to use the tool: 'Use when the user is uncertain which treatment_type to pass to search_facilities, or asks 'what's the difference between X and Y'.' This provides direct decision guidance and implies the alternative (search_facilities) without needing to name it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_statesList States with CoverageARead-onlyIdempotentInspect
List every US state that has treatment facility data in this directory, with per-state facility counts. Returns an array of {state, stateAbbr, count}. Use as a first step when the user's location is unclear, or to discover where coverage exists before calling search_facilities.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, so the description adds complementary value by disclosing the return shape ('array of {state, stateAbbr, count}') and the fact that it lists only states with data. 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 primary action, then return format, then use case. No filler words; 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?
For a zero-parameter listing tool, the description fully conveys the return format and intended usage context. It is self-contained and sufficient for an agent to invoke the tool correctly without additional information.
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 adds the output structure, which is the only relevant semantic detail. No parameter explanations are needed.
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 function: 'List every US state that has treatment facility data in this directory, with per-state facility counts.' It uses a specific verb ('List') and resource ('every US state'), and the scope ('with per-state facility counts') distinguishes it from siblings like search_facilities and get_facility_detail.
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?
Explicitly states when to use: 'Use as a first step when the user's location is unclear, or to discover where coverage exists before calling search_facilities.' It also names the alternative tool (search_facilities), providing clear decision guidance.
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-onlyIdempotentInspect
Search the 12,338 curated, SAMHSA-sourced US addiction treatment facility directory by state, city, treatment type, and insurance. Returns matched facilities with name, city/state, programs offered, insurance accepted, phone, and browse URL. Use this to find candidates — then call get_facility_detail for one facility's full profile. If the user is uncertain about location coverage, call list_states first.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City name (partial match supported — 'san fran' matches 'San Francisco') | |
| limit | No | Max results to return (1-20, default 5) | |
| state | Yes | US state name or 2-letter abbreviation (e.g. "California" or "CA"). Required — searches are scoped to one state at a time. | |
| insurance | No | Insurance provider accepted (e.g. "Medicaid", "Aetna", "Blue Cross", "Medicare", "Private Pay"). Partial match supported. | |
| treatment_type | No | Type of treatment program. Call get_treatment_types if the user is unsure which applies. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, covering the safety profile. The description adds valuable context about the curated directory size and specifies the exact return fields, which goes beyond the schema. It lacks details on pagination or error handling, but the annotations lower the bar, and the added context earns a 4.
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?
Three sentences, each earns its place: the first defines the directory and filters, the second lists return fields, and the third gives usage flow with sibling tools. Highly concise and front-loaded.
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 read-only/idempotent annotations and a fully descriptive schema, the description covers purpose, return fields, sibling tool flow, and prerequisite conditions. It provides enough context for an agent to select and invoke the tool correctly, even without an output schema.
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 all five parameters have detailed descriptions with types, defaults, and examples. The tool description recaps search dimensions but adds no new semantics beyond what the schema already provides. Baseline 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 a specific action ('Search') on a specific resource ('12,338 curated, SAMHSA-sourced US addiction treatment facility directory') with identifiable filters (state, city, treatment type, insurance). It also distinguishes itself from siblings by explicitly directing to get_facility_detail for full profiles and list_states for location coverage.
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?
Explicit guidance is provided: 'Use this to find candidates — then call get_facility_detail for one facility's full profile.' It also instructs when to call list_states first if location coverage is uncertain. This clearly states when to use the tool versus alternatives.
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
- 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.64MIT
- Flicense-qualityBmaintenanceSearch 6,900+ U.S. surety bond requirements across all 50 states. Instant pricing.
- 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.3MIT
- Flicense-qualityCmaintenanceProvides unified access to drug formulary data from US ACA marketplace health insurance plans, enabling drug search, coverage details, restriction info, and plan comparison across thousands of plans.
Your Connectors
Sign in to create a connector for this server.