Claude Code
One command. Streamable HTTP, no bridge process.
Run this
claude mcp add --transport http cybertoolchain https://mcp.cybertoolchain.io/mcp \
--header "Authorization: Bearer $TOOLCHAIN_API_KEY"
Or write this
{
"mcpServers": {
"cybertoolchain": {
"type": "http",
"url": "https://mcp.cybertoolchain.io/mcp",
"headers": {
"Authorization": "Bearer ${TOOLCHAIN_API_KEY}"
}
}
}
}
watch outYour shell expands $TOOLCHAIN_API_KEY before Claude Code ever sees it, so the command above writes the KEY ITSELF into ~/.claude.json. The .mcp.json form keeps ${TOOLCHAIN_API_KEY} as a placeholder and resolves it at launch — prefer it if the file is anywhere near a git repo. Add --scope user to the command to register the server for every project rather than the current one.