← eaglesports-web.com

INDIVIDUAL MCP TOOL

get_fitness_studio_schedule

イーグルスポーツプラザ小山のフィットネス スタジオレッスン週間時間割を返す。day(月/火/水/金/土/日。木曜は休館日のため対象外)、studio(A / B)、className(クラス名の部分一致)で絞り込み可能。各レッスンは start / end / className / instructor を含む(aug がある場合は 2026年8月からの変更予告)。水曜・土曜の週替わりクラスも別フィールドで取得可能。SoT は /fitness/studio-schedule。

eaglesports-web.comnone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

eaglesports-web.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.eaglesports-web-com]
url = "https://www.eaglesports-web.com/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "eaglesports-web-com": {
      "type": "http",
      "url": "https://www.eaglesports-web.com/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: eaglesports-web-com
Remote MCP URL: https://www.eaglesports-web.com/api/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "eaglesports-web-com": {
      "url": "https://www.eaglesports-web.com/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "eaglesports-web-com": {
      "type": "http",
      "url": "https://www.eaglesports-web.com/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "eaglesports-web-com",
  "transport": "streamable-http",
  "url": "https://www.eaglesports-web.com/api/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • list_facilities — イーグルスポーツが運営する 6 施設のサマリ一覧(ID / 名称 / 種別 / 説明 / URL)を返す。各施設の詳細は get_facility_info で取得できる。
  • get_facility_info — 指定施設の基本情報(住所・電話・URL・概要)を返す。facility 省略時は全 6 施設を返す。
  • get_pricing — 指定施設の料金体系を返す。groups は h2 単位のグループ(会員プラン・オプション等)、各 group の sections は h3 単位の細分(マスターズ/アクアビクス等)、各 section の rows が個別の料金行。miscFees は本文中の追加手数料(会員種別変更・休会料・追加料金等)。
  • get_class_schedule — Kids 4 校(スイミング小山/古河、サヤップ小山/横倉)の週間クラス時間割を返す。weeklySchedule は曜日(月〜日)ごとに sections(子供クラス/大人クラス等)と lessons(時刻・クラス名・対象級など)を含む。
  • search_classes — Kids 4 校の週間時間割を横断検索する。query は lesson 名・対象級ラベル・詳細テキストに部分一致で照合。day(月〜日)/ school でも絞り込み可能。get_class_schedule が校別の全体時間割なのに対し、こちらはクラス名や時間帯から逆引きするための tool(例: 「土曜にあるバレエ」「初級スイミング」)。
  • list_recruits — 現在募集中(active)の求人一覧を返す。area(oyama=小山/古河近郊、koga=古河)と employmentType(正社員 / アルバイト / パート 等)で絞り込み可能。各エントリは id / 求人タイトル / 雇用形態 / 給与 / 勤務地名 / 求人ページ URL を含む。詳細は get_recruit で取得。
  • get_kids_annual_events — Kids 4 校(swim_oyama / swim_koga / sayap_oyama / sayap_yokokura)の年間イベント(授業参観・校内水泳大会・クリスマス会・遠足・感謝祭・サヤップの日 等)を返す。school を省略すると 4 校全て、month を指定すると該当月のみ。各イベントは name と classes(参加対象クラス)を含む。
  • get_kids_calendar — Kids 4 校の年間カレンダー設定(休校日・祝日・特別日・休校曜日・クラスフィルター)を返す。指定校(必須)の closedDates(一括休校日:お盆・年末年始等)、holidays(祝日マップ:22 件)、closedDow(休校曜日:日曜 / 金曜)、specialDays(試験日・サヤップの日等)、calendarFilters(学童=テスト週 / ベビー=祝日休校 等のクラス別パターン)を含む。AI 側でこれらを統合して「何日が休校か」を判定する用途。実装ロジックは Calendar.tsx 参照。