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
10 changes: 0 additions & 10 deletions .mcp.json

This file was deleted.

8 changes: 6 additions & 2 deletions mcp-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ Add the server to your MCP client configuration. Example for Claude Desktop (`cl
"mcpServers": {
"github-rag": {
"command": "npx",
"args": ["-y", "github-rag-mcp"]
"args": ["-y", "github-rag-mcp"],
"alwaysLoad": true
}
}
}
Expand All @@ -63,12 +64,15 @@ To target a self-hosted Worker, set the `RAG_WORKER_URL` environment variable:
"args": ["-y", "github-rag-mcp"],
"env": {
"RAG_WORKER_URL": "https://your-worker.example.workers.dev"
}
},
"alwaysLoad": true
}
}
}
```

> **Note on `alwaysLoad`:** Recognized by Claude Code v2.1.121+ (released 2026-04-28). When set, the client loads this server's tools at session start instead of deferring them behind a `ToolSearch` round-trip — useful for retrieval servers used on every turn. Older clients silently ignore the field, so it is safe to leave in place. `alwaysLoad` を認識しないクライアント (Claude Desktop など) では無視されるだけで害はない。

## Configuration

| Variable | Required | Default | Description |
Expand Down
Loading