docs(readme): state env var auth direction in the config table #28
Loading…
Reference in a new issue
No description provided.
Delete branch "docs/YTMCP-22-env-var-direction"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The stdio Configuration table documented
YOUTRACK_TOKENas "Permanent API token used to authenticate" without stating direction. A reader cannot tell whether it authenticates the server to YouTrack or a client to the server. Operators coming fromforgejo-mcp(whoseMCP_HTTP_TOKENis an inbound client-to-server bearer) misreadYOUTRACK_TOKENas the same kind of token.Change
Documentation only. Added a Direction column and rewrote the rows so each stdio variable names its direction:
YOUTRACK_BASE_URLandYOUTRACK_TOKENare server-to-YouTrack (upstream), andYOUTRACK_TOKENis the token the server presents to YouTrack, not an inbound bearer. Added a note that stdio has no inbound auth (the launching MCP client owns the process over stdin/stdout) and that noMCP_HTTP_TOKEN-style inbound bearer exists here; inbound per-user auth lives only in the http transport via OAuth 2.1 against Hub.No new environment variables.
just pre-commit(fmt, clippy, build, 73 tests) passes.#YTMCP-22