@allium-labs/mcp
v0.2.0
Published
CLI installer for Allium's MCP server
Readme
@allium-labs/mcp
CLI installer for Allium's MCP server. Configures your AI coding tool to connect to Allium's remote MCP server.
Quick Start
npx @allium-labs/mcp installThe installer will walk you through:
- Selecting your AI tool (Claude Code, Cursor, VS Code, etc.)
- Entering your Allium API key
- Writing the MCP config to the correct location
Non-Interactive
npx @allium-labs/mcp install --client claude-code --api-key YOUR_KEY --yesSupported Clients
- Claude Code
- Cursor
- Claude Desktop
- VS Code (GitHub Copilot)
- Codex
- Cline
- RooCline
- Windsurf
- Warp
- Gemini CLI
- Goose
- Zed
- Opencode
- Tabnine
Manual Setup
If you prefer to configure manually:
Claude Code:
claude mcp add --scope user --transport http allium https://mcp.allium.so --header "X-API-KEY: YOUR_KEY"Other clients — add to your MCP config:
{
"allium": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.allium.so", "--header", "X-API-KEY:YOUR_KEY"]
}
}