Gth MCP Server

An MCP server that gives AI agents access to 12,338 curated US addiction treatment facilities, sourced from SAMHSA, across all 50 states. Built for

Remote serverstreamable-http

What is the Gth MCP server?

An MCP server that gives AI agents access to 12,338 curated US addiction treatment facilities, sourced from SAMHSA, across all 50 states. Built for treatment operators, healthcare AI developers, and anyone building tools that help people. The gth mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 4 defined tools rather than through you.

Its toolset

Everything the assistant can do here goes through one of these:

  • search_facilities — Search for addiction treatment facilities. Filter by US state (required), city, treatment type, and insurance accepted. Returns facility names
  • get_facility_detail — Get the full profile of one treatment facility by name: location, phone, programs offered, insurance accepted, and a browse URL. Partial name
  • list_states — List every US state with treatment facility data, with per-state facility counts
  • get_treatment_types — Get definitions of all treatment program types (Inpatient Rehab, Detox, PHP, IOP, Outpatient, MAT, Counseling, Sober Living) with duration

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Gth's toolset — search_facilities, get_facility_detail, list_states and 1 more — is a fair guide to whether it matches your workflow. It is maintained by crindo2; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the gth mcp server does with a few real requests.

Available tools

ToolWhat it does
search_facilitiesSearch for addiction treatment facilities. Filter by US state (required), city, treatment type, and insurance accepted. Returns facility names, locations, programs, insurance, phone numbers, and a browse URL.
get_facility_detailGet the full profile of one treatment facility by name: location, phone, programs offered, insurance accepted, and a browse URL. Partial name matching supported.
list_statesList every US state with treatment facility data, with per-state facility counts.
get_treatment_typesGet definitions of all treatment program types (Inpatient Rehab, Detox, PHP, IOP, Outpatient, MAT, Counseling, Sober Living) with duration, intensity, and typical fit.

How to install the Gth MCP server

{
  "mcpServers": {
    "gth": {
      "command": "npx",
      "args": ["-y", "mcp-remote"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Gth to search facilities.
  • Use Gth to get facility detail.
  • Use Gth to list states.

Frequently asked questions

It connects Gth to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (search_facilities, get_facility_detail, list_states, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Gth directly.