Serve MCP at a secret path, so claude.ai can connect
claude.ai's connector dialog takes a name and a URL. Sending a bearer token needs a "Request headers" beta most accounts lack, and OAuth is not built yet, so with MCP_PATH_SECRET set the endpoint is also served at /<secret>/mcp without the bearer token — a trial until OAuth replaces it. The path is the credential there. It is compared in constant time, and a wrong one answers 404 like any unknown path. The config refuses fewer than 32 URL-safe characters and never echoes the value, nothing in the server logs request paths, and the Caddy snippet rewrites the segment before an access log entry is written (verified against Caddy 2.11). Claude Code and the CLI keep the bearer token; DEPLOYMENT.md says what the path trades away. 178 tests. Smoke 76/76 and 74/74 on the local instance. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -24,6 +24,13 @@ TSC_JWT_COOKIE=
|
||||
# openssl rand -hex 32
|
||||
MCP_AUTH_TOKEN=
|
||||
|
||||
# claude.ai only: serve MCP at /<this value>/mcp WITHOUT the bearer token,
|
||||
# because its connector dialog cannot send a header. The URL becomes the
|
||||
# credential — see "Connecting Claude" in docs/DEPLOYMENT.md before using it.
|
||||
# At least 32 URL-safe characters; unset = off. Generate one with:
|
||||
# openssl rand -hex 32
|
||||
# MCP_PATH_SECRET=
|
||||
|
||||
# Where a Schulcloud token replaced at runtime (`schulcloud token set`, /token)
|
||||
# is saved, so a restart keeps it. docker-compose.yml sets /data/state; unset =
|
||||
# replacements last until the next restart.
|
||||
|
||||
Reference in New Issue
Block a user