@allium-so/mcp
v0.3.0
Published
CLI installer for Allium's MCP server
Downloads
233
Maintainers
Readme
@allium-so/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-so/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-so/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
Claude Code uses native HTTP transport. All other clients use mcp-remote as a stdio-to-HTTP bridge.
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"]
}
}