1. Guide(Japanese)
Jicoo Developer Potal
  • Create powerful apps with Jicoo's API
  • Quick start
  • Authentication
  • Errors
  • Versioning
  • Types
  • API Reference Overview
  • Guide
    • How to use webhook
    • How to use Account integration
  • Guide(Japanese)
    • アカウント連携の使い方
    • Webhookの使い方
    • ホストの優先度を更新する方法
    • Jicoo MCP Serverの使い方
    • Jicoo MCP サーバ セットアップガイド
  • API Reference
    • Jicoo API
    • Webhook Schema
      • Webhook schema
      • event property
      • createdAt property
      • object property
      • contact property
      • answers property
      • answers items property
      • tracking property
    • Booking
      • List Bookings
      • Get Booking
      • Cancel Booking
      • Reschedule Booking
      • Create Booking
      • Update Booking
      • Get Booking Contacts
    • Schedule
      • Update Schedule
      • Create Schedule
      • List Schedules
      • Delete Schedule
    • Availability
      • List User Availability Calendars
      • Get User Availability Calendar
    • Oraganization
      • User
        • List Organization Users
        • Delete Organization User
        • Get Organization User
        • Update Organization User
      • Invitation
        • Create Organiztion Invitation
        • List Organization Invitations
        • Get Organization Invitation
        • Delete Organiztion Invitation
      • Get Organization Team
    • Event Types
      • Get Event Type
      • List Event Types
      • List Event Type Hosts
      • Get Event Type Available Schedules
      • Account Integration
      • Update Event Type Host
      • Delete Event Type Host
      • Create Event Type Host
      • Delete Event Type Host Assign Rule
      • Update Event Type Host Assign Rule
      • Create Event Type Host Assign Rule
      • List Event Type Host Assign Rules
      • Update an event type
      • Create an event type
      • Delete an event type
    • Webhook Endpoints
      • List webhook endpoints
      • Create a webhook endpoint
      • Get a webhook endpoint
      • Update a webhook endpoint
      • Delete a webhook endpoint
    • Booking Meeting Intelligence
      • List recordings for a booking
      • List transcripts for a booking
      • List recaps for a booking
  • Schemas
    • Booking
    • OrganizationUser
    • OrganizationInvitation
    • UserAvailabilityCalendar
    • OrganizationTeam
    • EventType
    • Host
    • Pagination
    • AvailableSchedule
    • EventTypeUpdateRequest
    • EventTypeCreateRequest
    • BookingRecapSummary
    • BookingTranscriptSpeakerTimelineSegment
    • BookingRecording
    • BookingRecapRisk
    • EventTypeDetail
    • EventTypeUpdateLocation
    • GeneratedEventTypeUpdateRequest
    • EventTypeCreateEventType
    • BookingTranscript
    • BookingRecordingResponse
    • WebhookEndpointPublicCreateBody
    • WebhookEndpointPublicUpdateBody
    • EventTypeUserUpdate
    • ErrorEnvelope
    • EventTypeCreateLocation
    • BookingRecap
    • BookingTranscriptResponse
    • EventTypeUserCreate
    • EventTypeUpdateForm
    • BookingRecapResponse
    • WebhookEndpointCreateResponse
    • EventTypeUpdateWorkflow
    • EventTypeUpdateHostAssignRule
    • WebhookEndpoint
    • EventTypeCalendarCreateBody
    • EventTypeCalendarCreate
    • EventTypeNotification
    • EventTypeSettingCreateBody
    • EventFormCreateBody
    • EventTypeTransparencyKeywordCreateBody
    • EventTypeCreateHostAssignRule
    • Schedule
    • EmptySuccessResponse
    • ErrorResponse
    • Booking Contact
    • HostAssignRule
  1. Guide(Japanese)

Jicoo MCP サーバ セットアップガイド

Jicoo を生成AIツールから操作するための MCP (Model Context Protocol) サーバ の追加方法を、クライアント別に説明します。

目次#

前提条件
Claudeに追加する
Claude Codeに追加する
Codexに追加する
Gemini CLIに追加する

前提条件#

項目値
MCP エンドポイントhttps://mcp.jicoo.com/
TransportStreamable HTTP
認証方式OAuth 2.1 + Dynamic Client Registration (DCR)
API キー認証非対応
リファレンスJicoo MCP サーバ仕様
初回接続時、ブラウザが起動して Jicoo の認可画面が表示されます。許可後、各クライアントから利用可能になります。
利用可能なスコープ:
offline_access (リフレッシュトークン取得用。必須相当)
read:bookings / write:bookings
read:event_types / write:event_types
read:webhook_endpoints / write:webhook_endpoints
offline_access を付与しないと、毎回再認証を求められます。

Claudeに追加する#

claude.ai の Custom Connectors として追加します。

対応プラン#

Free / Pro / Max / Team / Enterprise (Free プランは1コネクタのみ)

手順#

1.
claude.ai にログインする
2.
Settings → Connectors を開く
3.
「+」ボタンをクリックし、Add custom connector を選択する
4.
以下を入力する
Name: Jicoo
Remote MCP server URL: https://mcp.jicoo.com/
5.
Add をクリックする
6.
別タブで Jicoo の認可画面が開くので、ログインして 許可 する
7.
チャット画面左下の「+」 → Connectors から Jicoo をオンにする
▲ 目次に戻る

Claude Codeに追加する#

ターミナルで claude mcp add コマンドを実行します。
初回ツール呼び出し時にブラウザで Jicoo の認可画面が開きます。承認後、以降のセッションでも利用できます。

設定の確認#

スコープを指定する場合#

ユーザー全体で使うには -s user、特定プロジェクトに紐付けるには -s project を追加します。
▲ 目次に戻る

Codexに追加する#

~/.codex/config.toml に以下を追記します (ファイルが存在しない場合は新規作成してください)。
[mcp_servers.jicoo]
url = "https://mcp.jicoo.com/"
enabled = true
scopes = [
  "offline_access",
  "read:bookings",
  "write:bookings",
  "read:event_types",
  "write:event_types",
]
oauth_resource = "https://mcp.jicoo.com/"
Codex を起動すると OAuth フローが進行し、ブラウザで Jicoo の認可画面が開きます。
▲ 目次に戻る

Gemini CLIに追加する#

~/.gemini/settings.json の mcpServers に追記します (ファイルが存在しない場合は新規作成してください)。
{
  "mcpServers": {
    "jicoo": {
      "httpUrl": "https://mcp.jicoo.com/"
    }
  }
}
Gemini CLI を起動後、以下のコマンドで認証フローを開始できます。
/mcp auth jicoo
ブラウザで Jicoo の認可画面が開き、許可するとツールが利用可能になります。
▲ 目次に戻る
Modified at 2026-04-29 03:54:26
Previous
Jicoo MCP Serverの使い方
Next
Jicoo API
Built with