Skip to main content
Glama
woodydaniel

whodoicallfor-mcp

by woodydaniel

whodoicallfor-mcp

家庭の緊急時に人々が実際に抱く質問に答えるMCPサーバー: どの専門業者に電話すればいい?

「配管工を探して」ではありません。その前の質問 — これってそもそも配管工の仕事?

問題

配管工に電話したら、家電修理業者に電話しろと言われた。家電修理業者に電話したら、配管工に電話しろと言われた。

それは家庭の緊急事態では普通のことで、しかも費用がかさむ。出張費が2回、半日が無駄になり、それでも天井から水は落ちてくる。職種は専門化されており、その境界は外からは見えない。天井の染みは、雨に伴って現れるなら屋根業者、エアコンの稼働に伴うならHVAC技術者、上の階のシャワーに伴うなら配管工の仕事だ。漏水が止まった後の水害は4つ目の職種 — 復旧作業員 — の担当であり、配管工は出張費を支払った後にそう教えてくれるだろう。

このサーバーはアシスタントに案内表を提供する。問題を平易な言葉で説明すると、誰に連絡すべきか、どの順序で、何の目的では連絡すべきでないか、日付入りのソース付きの一般的な費用、そしてあれば24時間365日の緊急連絡先が返ってくる。

コンテンツは whodoicallfor.com の公開JSON APIから取得する。認証もAPIキーも設定も不要。

インストール

Claude Code

claude mcp add whodoicallfor -- npx -y whodoicallfor-mcp

Cursor~/.cursor/mcp.json に追加(またはプロジェクト内の .cursor/mcp.json):

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

同じ構成は Claude Desktop(claude_desktop_config.json)、Windsurf、Zed、そしてstdio MCPに対応する他のすべてのツールでも機能する。

何も実行しないという選択肢もある。 このサーバーのホスト版インスタンスが稼働中だ:

https://whodoicallfor.com/api/mcp/

これはstreamable HTTPに対応し、ステートレスで、認証情報も不要だ。末尾のスラッシュが必要 — スラッシュなしのURLは308リダイレクトで応答し、一部のMCPクライアントはPOSTでのリダイレクトに従わない。

claude mcp add --transport http whodoicallfor https://whodoicallfor.com/api/mcp/

直接実行する

npx whodoicallfor-mcp                # stdio (default)
npx whodoicallfor-mcp --http         # streamable HTTP on http://localhost:3000/mcp
npx whodoicallfor-mcp --http 8080    # ...on a port you pick

Node 20.19以降が必要。

ツール

3つとも読み取り専用で、冪等であり、公開APIの外部には一切アクセスしない。

ツール

引数

戻り値

route_emergency

problem(必須)、state(任意)

ランク付けされた最大3件の状況(最良が先)

get_scenario

categoryslug

1件の状況を完全な形で

list_scenarios

公開されているすべての状況と正規URL

route_emergency

平易な言葉の問題を入力し、ランク付けされた状況を出力する。米国の州コードまたは州名("FL""Florida")を渡すと、緊急連絡先がその州を実際にカバーする番号に絞り込まれる。

入力

{ "problem": "water coming through my ceiling" }

出力(要約版 — 実際のレスポンスには完全な costsfaqsources 配列を持つ3件のマッチが含まれる)

{
  "matches": [
    {
      "title": "Water Leaking From the Ceiling — Who Do I Call?",
      "category": "water",
      "vertical": "water-damage",
      "tldr": "What's directly above matters less than timing. Appears or worsens when it rains → roofer. Appears when the AC runs, or only in cooling season → HVAC condensate line. Neither, and it tracks water use upstairs → plumber. If water is still coming, shut the main valve, keep it clear of lights and outlets, and photograph everything before any repair. Renting? The landlord's emergency line comes before any of this.",
      "who_to_call": [
        {
          "who": "Emergency plumber",
          "when": "Water is actively dripping or flowing and you can't stop it at the source",
          "not_for": "The leak has stopped — a plumber fixes pipes, not soaked drywall"
        },
        {
          "who": "Roofer",
          "when": "The stain appears or worsens when it rains and stays quiet in dry weather — usually failed flashing",
          "not_for": "The stain tracks showers, washes, or flushes rather than the weather"
        }
      ],
      "costs": [
        {
          "item": "Water-damaged ceiling repair",
          "range": "$200–$1,500",
          "source": "Fixr",
          "source_url": "https://www.fixr.com/costs/ceiling-repair"
        }
      ],
      "updated": "2026-08-12",
      "url": "https://whodoicallfor.com/water/ceiling-leaking/",
      "recommended_call": null,
      "match_score": 12
    }
  ],
  "state": null
}

not_for フィールドが、無駄な出張費を防ぐ部分だ。

十分なスコアのものが何もない場合は、自信満々の誤った答えではなく、空の matches 配列と note、カテゴリインデックス、ガイド付きトリアージへのリンクが返される。

get_scenario

route_emergency または list_scenarioscategoryslug を使用して、1件の状況を完全に取得する。

{ "category": "water", "slug": "ceiling-leaking" }

同じ構造化オブジェクトに加え、アップストリームAPIが提供する場合には body_markdown(完全なステップバイステップガイド)も返す。

list_scenarios

引数なし。{ site, count, scenarios[] } を返す — 公開されているすべての状況について、タイトル、説明、カテゴリ、slug、updated 日付、正規URL、JSON URLが含まれる。

マッチングの仕組み

route_emergency は、あなたの問題と各状況の4つのフィールドとの間の重み付きトークン重複によってランク付けする。タイトル×3、説明×2、tldr×1、各 who_to_call ステップの who/when×1。トークンは小文字化され、句読点が除去され、ストップワードリストでフィルタリングされ、接尾辞が畳み込まれるため、"leaking" は "leak" に、"pipes" は "pipe" にマッチする。スコアが3未満のものは破棄され、戻ってくる最大は3件だ。

tldrwho_to_call はインデックスではなくページごとのドキュメントに存在するため、最初の route_emergency 呼び出しでメモリ内キャッシュ全体がウォームアップされる(同時実行数は制限付き、コールド時約2秒)。以降の呼び出しは一桁ミリ秒だ。インデックスは10分間、ページ本体は1時間キャッシュされるため、サイトに負荷をかけることはない。

ファジーマッチングも、埋め込みモデルも、whodoicallfor.com 以外へのネットワーク呼び出しもない。一気に読める小さな決定論的関数だ: src/match.ts

開示

はっきりさせておくべきことが2つある。

recommended_call のエントリはスポンサー付きである。 これらは有料の電話課金型回線であり、それぞれペイロード内で "sponsored": true とラベル付けされている。状況にこれが含まれる場合、それがサイトの商業エンジンだ。電話番号付きの広告として扱い、その旨をユーザーに提示してほしい — フラグがデータ内にあるのは、まさにそうできるようにするためだ。

生命に関わる番号がスポンサー付きになることは決してない。 911、中毒情報センター、ガス事業者の緊急回線には recommended_call が一切含まれない — ガスのシナリオや営利分野が存在しない状況に対しては、サーバー側でそれを除去する強固なガードがある。もし誰かがガスの臭いを感じたら、答えは「外に出て、建物の外からガス事業者に電話する」であり、その表示枠に対して誰も支払っていない。そのガードはポリシーの好みではなく、コードであり、アップストリームに存在し、このクライアントはそれを上書きできない。

費用の数値は、アクセス日を明記した名前付きソースに基づいている。行動に移そうとしていることは、すべて検証してほしい。

開発

npm install
npm run typecheck
npm run build
npm start           # stdio
npm run start:http  # http on :3000
src/index.ts    entry point: tool definitions, stdio + streamable HTTP transports
src/client.ts   cached fetches against the public JSON endpoints
src/match.ts    token-overlap ranking

カバレッジ

米国中心。水・浸水、ガス・一酸化炭素、電力・電気、冷暖房、家電製品、害虫・野生動物、締め出し、車のトラブル、大家・業者とのトラブルなど、約40の状況をカバーする。list_scenarios は常に実際に公開されている内容を反映する。

ライセンス

MIT © Daniel Widmonte

-
license - not tested
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

  • MCP server for generating rough-draft project plans from natural-language prompts.

  • MCP server giving Claude AI access to 22+ NYC public-record databases for real estate due diligence

  • Hosted MCP server exposing US hospital procedure cost data to AI assistants

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/woodydaniel/whodoicallfor-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server