Elixium Companion for VS Code
Bring MCP-powered Elixium tools directly into your editor.
Features
- MCP Tools Sidebar: Run Elixium MCP tools without leaving code.
- Command Palette: One command per MCP tool for quick access.
- Story Actions: Start story flow, create stories, move lanes, and set states.
- Board & Branch: Open stories in the board and create git branches from stories.
- Saved Prompts: One-click implementation brief and hypothesis template.
- Iteration Context: Current + Backlog + Objectives in a dedicated panel.
- Badges & Notifications: Counts for Current/Backlog and status change toasts.
- Output Panel: Full tool responses in a dedicated output channel.
Setup
- Build the MCP server:
cd mcp-server
npm install
npm run build
- Configure
.vscode/mcp.json in your workspace:
{
"mcpServers": {
"elixium": {
"command": "node",
"args": ["/absolute/path/to/elixium.ai/mcp-server/dist/index.js"],
"env": {
"ELIXIUM_API_KEY": "your_api_key_here",
"ELIXIUM_API_URL": "https://your-tenant.elixium.ai/api",
"ELIXIUM_BOARD_SLUG": "main"
}
}
}
}
- Reload VS Code or use the MCP sidebar refresh button.
Development
npm install
npm run compile
- Press
F5 to debug.
| |