# get_facility_detail

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.

Agent View of the PolicyLayer registry record for `get_facility_detail`. HTML page: https://policylayer.com/tools/com-gettreatmenthelp-gettreatmenthelp/get-facility-detail

## Facts

- Tool: `get_facility_detail`
- Server: GTH Intelligence — Substance Abuse Treatment Finder (`https://gth-mcp-server.pages.dev/mcp`) — https://policylayer.com/tools/com-gettreatmenthelp-gettreatmenthelp.md
- Homepage: https://github.com/Crindo2/gth-mcp-server
- Risk category: Read (Low risk)
- Registry record: grade C, identity unverified
- Server auth posture: open
- Server CORS policy: *
- Server rate-limited: no
- Parameters: 1 (1 required)
- Recommended policy verdict: Allowed

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `name` | string | yes | Full or partial facility name (e.g. 'Betty Ford' or 'Hazelden Betty Ford Center') |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_facility_detail",
    "arguments": {
      "name": "<name>"
    }
  }
}
```

## Why get_facility_detail is rated Low

This tool only queries and retrieves information about treatment facilities from a database without side effects. It returns public facility data (address, phone, programs, insurance, verification status) and a URL. The operation is read-only with no irreversible changes, no code execution, and no financial impact.

From the tool's own definition: "Tool retrieves and returns facility profile data: 'Get the full profile of one specific treatment facility: address, phone, programs offered, insurance plans accepted, SAMHSA verification status, and a direct browse URL.' No creation, modification, deletion,…"

## Use case

AI agents call get_facility_detail to retrieve information from GTH Intelligence — Substance Abuse Treatment Finder without modifying anything. It is typically the context-gathering step in research, monitoring, and reporting workflows, before the agent takes action elsewhere.

## Recommended policy (PolicyLayer)

Verdict: **Allowed**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches GTH Intelligence — Substance Abuse Treatment Finder:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "get_facility_detail": {}
  }
}
```

## Other tools on GTH Intelligence — Substance Abuse Treatment Finder (3)

- `get_treatment_types` — Read — https://policylayer.com/tools/com-gettreatmenthelp-gettreatmenthelp/get-treatment-types.md
- `list_states` — Read — https://policylayer.com/tools/com-gettreatmenthelp-gettreatmenthelp/list-states.md
- `search_facilities` — Read — https://policylayer.com/tools/com-gettreatmenthelp-gettreatmenthelp/search-facilities.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=com-gettreatmenthelp-gettreatmenthelp · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/com-gettreatmenthelp-gettreatmenthelp
