← ClaudeAtlas

voyager-initlisted

Initialize Axelera Voyager MCP server integration for task management, knowledge base, and project tracking. Use when the user wants to set up Voyager for a new Voyager SDK workspace.
fxd0h/Axelera-Voyager-Local-Assistant · ★ 1 · AI & Automation · score 77
Install: claude install-skill fxd0h/Axelera-Voyager-Local-Assistant
# Initialize Axelera Voyager Integration Set up Axelera Voyager MCP server integration for task management, knowledge base, and project tracking ## Important Context After initialization, all relevant skills use Axelera Voyager for project tracking and task management. ## Instructions Initialize Axelera Voyager integration: **$ARGUMENTS** ### Step 0: Data Source & Environment Selection {{INCLUDE common/voyager-sdk-setup.md}} ### Step 1: Verify Axelera Voyager MCP Server **FIRST**, verify Axelera Voyager MCP server is available: ```python # Check health mcp__voyager__health_check() # Check session mcp__voyager__session_info() # List available knowledge sources mcp__voyager__rag_get_available_sources() ``` If any of these fail, the Voyager MCP server is not registered or not reachable. Set it up as follows: - The hosted server is `https://mcp.voyager.axelera.ai/mcp` (streamable HTTP). - Authentication is OAuth via discovery on first tool use. There are no static tokens; never suggest shared bearer tokens or static authorization headers. - Claude Code: register the server with ```bash claude mcp add --transport http voyager https://mcp.voyager.axelera.ai/mcp ``` or add this to the repo root `.mcp.json`: ```json { "mcpServers": { "voyager": { "type": "http", "url": "https://mcp.voyager.axelera.ai/mcp" } } } ``` - Restart the client session, complete the OAuth prompt on first tool use, then re-run the health