Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/installation.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ A browser window should have opened automatically. Sign in on GitHub, then retry
"github-webhook-mcp": {
"command": "npx",
"args": ["github-webhook-mcp"],
"alwaysLoad": true,
"env": {
"WEBHOOK_WORKER_URL": "https://github-webhook-mcp.example.workers.dev",
"WEBHOOK_CHANNEL": "1"
Expand All @@ -77,6 +78,8 @@ A browser window should have opened automatically. Sign in on GitHub, then retry

`WEBHOOK_CHANNEL=1` でリアルタイムチャンネル通知を有効化(Claude Code CLI のみ)。

`alwaysLoad: true` は Claude Code v2.1.121 以降で利用可能。本サーバーのツールを tool-search の deferral 対象から外し、毎ターン即座に利用可能にします(UserPromptSubmit hook 経由で毎ターン呼ばれるため推奨)。

### Codex — config.toml

```toml
Expand Down
3 changes: 3 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ A browser window should have opened automatically. Sign in on GitHub, then retry
"github-webhook-mcp": {
"command": "npx",
"args": ["github-webhook-mcp"],
"alwaysLoad": true,
"env": {
"WEBHOOK_WORKER_URL": "https://github-webhook-mcp.example.workers.dev",
"WEBHOOK_CHANNEL": "1"
Expand All @@ -75,6 +76,8 @@ A browser window should have opened automatically. Sign in on GitHub, then retry
}
```

`alwaysLoad: true` requires Claude Code v2.1.121 or later. It exempts this server's tools from tool-search deferral so they remain immediately callable every turn (recommended because the server is invoked every turn via the UserPromptSubmit hook).

`WEBHOOK_CHANNEL=1` でリアルタイムチャンネル通知を有効化(Claude Code CLI のみ)。

### Codex — config.toml
Expand Down
6 changes: 5 additions & 1 deletion mcp-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ Add the server to your MCP client configuration. Example for Claude Desktop (`cl
"mcpServers": {
"github-webhook": {
"command": "npx",
"args": ["-y", "github-webhook-mcp"]
"args": ["-y", "github-webhook-mcp"],
"alwaysLoad": true
}
}
}
Expand All @@ -76,6 +77,7 @@ To target a self-hosted Worker, set the `WEBHOOK_WORKER_URL` environment variabl
"github-webhook": {
"command": "npx",
"args": ["-y", "github-webhook-mcp"],
"alwaysLoad": true,
"env": {
"WEBHOOK_WORKER_URL": "https://your-worker.example.workers.dev"
}
Expand All @@ -84,6 +86,8 @@ To target a self-hosted Worker, set the `WEBHOOK_WORKER_URL` environment variabl
}
```

`alwaysLoad: true` requires Claude Code v2.1.121 or later. It exempts this server's tools from tool-search deferral so they remain immediately callable every turn (recommended because the server is invoked every turn via the UserPromptSubmit hook).

### Codex (`config.toml`)

```toml
Expand Down
Loading