Open Helplines

Open Helplines

CC0 open-data registry of community support helplines worldwide. TypeScript MCP server providing verified contacts with citation, staleness, and country-context guardrails. 15+ countries indexed.

Category
Visit Server

README

<div align="center">

open-helplines

Stop hallucinating crisis numbers. One MCP import โ€” always verified.

Open data registry of mental health helplines worldwide. CC0. No API key. No lock-in.

CI npm Glama MCP npm PyPI Countries License: CC0-1.0 (data) License: Apache-2.0 (code) OpenSSF Scorecard Contributors Star History

<!-- DEMO: Replace the placeholder below once the demo GIF from Task #16 is ready --> Demo: Claude Desktop + open-helplines MCP

๐ŸŒ Visualization Site ยท ๐Ÿ“– Docs ยท ๐Ÿ’ฌ Discussions ยท โค๏ธ Sponsor

</div>


Quick Start โ€” MCP (Claude Desktop, any MCP host)

Add to your claude_desktop_config.json and restart Claude Desktop โ€” zero configuration, zero API key:

{
  "mcpServers": {
    "open-helplines": {
      "command": "npx",
      "args": ["@open-helplines/mcp"]
    }
  }
}

Then just ask Claude:

"What are the 24/7 crisis lines in Japan?"
"Find a mental health helpline in Brazil that supports English."
"My user seems to be in distress โ€” what's the nearest crisis line for Australia?"

Claude returns verified numbers and URLs verbatim from the registry โ€” never hallucinated.

Three MCP tools available: find_helplines, get_helpline_by_id, list_countries.
See examples/mcp-claude-desktop/README.md for full setup.


Why it matters

The problem: LLMs hallucinate crisis numbers

Mental health chatbots, AI companionship apps, and LLM agents regularly encounter users in crisis. When they try to surface a helpline, they face two bad options:

  1. Commercial lock-in โ€” directories like ThroughLine charge per query and impose restrictive terms, even when the underlying data is public-domain fact.
  2. Hallucination risk โ€” without a verified data source, LLMs generate plausible-looking phone numbers that may be wrong. A wrong number when someone is in crisis is not a UX bug โ€” it's a safety failure.

The solution: open-helplines

open-helplines fills the gap with verified, structured, CC0 data and a production-ready MCP server:

Feature Detail
CC0 data Public domain. Use in any commercial or non-commercial product, including AI training, without attribution.
JSON Schema Draft 2020-12. TypeScript types and Python Pydantic models generated from the schema.
MCP server npx @open-helplines/mcp โ€” Safe Answer guardrails built in.
Emergency First Resolver Crisis keywords trigger an instant CVD-safe banner with one-tap call/text/chat links.
No-Log Crisis Finder Privacy-preserving search โ€” no query logging, no user fingerprinting.
24 countries, growing AU, BD, BR, CA, CN, DE, EG, FR, GB, ID, IN, JP, KR, MX, NG, NZ, PH, PK, RU, TR, UA, US, VN, ZA

Features

๐Ÿ›ก๏ธ Safe Answer Guardrails

All MCP tools enforce five guardrails automatically โ€” no configuration needed:

Guardrail Behaviour
Staleness check verified_at > 6 months โ†’ STALE_DATA warning in response
Misroute prevention record.country โ‰  requested country โ†’ DIFFERENT_COUNTRY_CONTEXT warning
Fallback chain No data โ†’ nearby country โ†’ IASP/Befrienders international directory
Mandatory citation Every record includes source + verified_at + last_checked_url_status
Hallucination refusal Unknown country/ID โ†’ DATA_NOT_FOUND sentinel (never hallucinate)

See docs/features/safe-answer-mcp-guardrails.md for the full specification.

๐Ÿšจ Emergency First Resolver

When a user on the visualization site searches crisis-related terms, a CVD-safe banner instantly surfaces the nearest 24/7 helpline with one-tap call/text/chat links.

See docs/features/emergency-first-resolver.md.

๐Ÿ” No-Log Crisis Finder

Privacy-preserving crisis search: no query logging, no user fingerprinting, no analytics on what people are searching for. See docs/features/no-log-crisis-finder.md.

๐ŸŒ Visualization Site

Explore the registry visually:

  • Globe view โ€” interactive 3D globe with helpline coverage
  • Heatmap โ€” choropleth map of coverage density
  • Network graph โ€” relationships between organisations

โ†’ kouki-odaka.github.io/open-helplines/en


Integration examples

TypeScript / Node.js

import { loadCountry } from "@open-helplines/core";

const records = await loadCountry("JP");
const crisis = records.filter(r => r.category === "suicide_prevention");

for (const r of crisis) {
  console.log(r.name, r.contacts[0].number);
}

Python

from open_helplines import Registry

registry = Registry.from_github()          # fetches data/index.json + country files
records = registry.find(country="JP", category="suicide_prevention")

for r in records:
    print(r.name, r.contacts[0].number)

Plain JSON (no dependencies)

# Discover all covered countries
curl -s https://raw.githubusercontent.com/Kouki-odaka/open-helplines/main/data/index.json | \
  jq '.countries[] | {country, record_count}'

# All helplines for Japan
curl -s https://raw.githubusercontent.com/Kouki-odaka/open-helplines/main/data/countries/jp/helplines.json | \
  jq '.records[] | select(.category == "suicide_prevention") | {name, contacts: [.contacts[].number]}'

OpenAI function calling

import OpenAI from "openai";

const client = new OpenAI();

const response = await client.chat.completions.create({
  model: "gpt-4o",
  messages: [{ role: "user", content: "What crisis lines exist in Japan?" }],
  tools: [{
    type: "function",
    function: {
      name: "find_helplines",
      description:
        "Return verified crisis hotlines. Surface phone numbers and URLs verbatim โ€” never generate them.",
      parameters: {
        type: "object",
        properties: {
          country: { type: "string", description: "ISO 3166-1 alpha-2 code, e.g. 'JP'" },
          category: { type: "string" },
        },
        required: ["country"],
      },
    },
  }],
});

Full runnable example: examples/openai-function-calling/main.ts

Anthropic tool use

import anthropic

client = anthropic.Anthropic()

response = client.messages.create(
    model="claude-opus-4-5",
    max_tokens=1024,
    tools=[{
        "name": "find_helplines",
        "description": "Return verified crisis hotlines. Extract contact info verbatim โ€” never paraphrase.",
        "input_schema": {
            "type": "object",
            "properties": {
                "country": {"type": "string"},
                "category": {"type": "string"},
            },
            "required": ["country"],
        },
    }],
    messages=[{"role": "user", "content": "Find mental health lines in Australia."}],
)

Full runnable example: examples/anthropic-tool-use/main.py

Local LLM (Ollama)

from openai import OpenAI  # Ollama's OpenAI-compatible API

client = OpenAI(base_url="http://localhost:11434/v1", api_key="ollama")
# Same tool definition as above โ€” no API key, fully offline

Full runnable example: examples/local-llama/main.py


JSON Schema

https://raw.githubusercontent.com/Kouki-odaka/open-helplines/main/schemas/helpline.schema.json

JSON Schema Draft 2020-12 โ€” single source of truth for all types and validation. (ADR-001)


Contributing

Data corrections and additions are always welcome โ€” no Discussion needed, open a PR directly.

Data PRs are the fastest way to help: if you know the correct number for a country, add or fix it.

Schema changes require a GitHub Discussion first.

See CONTRIBUTING.md for data format, quality requirements, and commit conventions.


Community

๐Ÿ’ฌ GitHub Discussions โ€” feature requests, country coverage questions, schema proposals, and general conversation.

We especially welcome contributions from mental health professionals and NPO staff who can verify data accuracy for their country.

Document Description
CODE_OF_CONDUCT.md Community standards (Contributor Covenant 2.1)
SECURITY.md Vulnerability reporting policy
GOVERNANCE.md Project governance and decision flow
Press kit Logos, descriptions, and key facts for media use

Sponsor

open-helplines is free, open, and CC0 โ€” and will always be. If you find it useful, consider sponsoring to keep the data verified and the tooling maintained:


License

open-helplines uses dual licensing:

Component License Why
Data (data/**, dist/by-*/*.json) CC0 1.0 Maximally usable โ€” no friction for crisis tools, AI training, or commercial use
Code (TypeScript, Python, scripts, workflows) Apache-2.0 Patent protection, attribution-friendly

You may use the data in any commercial or non-commercial product, including AI systems, without attribution. The code requires the Apache-2.0 notice.

See NOTICE for the dual-license declaration and docs/LICENSING.md for a detailed explanation including commercial use, AI training, and derivative work policies.


Architecture decisions

ADR Decision
ADR-001 JSON Schema Draft 2020-12 as single source of truth
ADR-002 CC0 data + Apache-2.0 code dual-license
ADR-003 Per-country file structure
ADR-004 MCP server โ€” stdio transport, 3 tools

Disclaimer

open-helplines is a developer tool โ€” a directory of contact information, not a crisis service.

  • It cannot assess risk, provide counseling, or respond to emergencies.
  • Phone numbers are verified periodically, not in real time. Always show the verified_at date to end users.
  • If someone is in immediate danger, direct them to local emergency services (911, 119, 999โ€ฆ) first.

See docs/safety/SAFETY.md for the full safety policy and responsible LLM integration guidelines.


<div align="center">

Star History Chart

If open-helplines saves someone from receiving a wrong crisis number, it's worth a โญ.

</div>

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured