fix(docker): production deployment fixes, MCP server, and documentation#3
Merged
fix(docker): production deployment fixes, MCP server, and documentation#3
Conversation
Adds a standalone MCP server that exposes Automaker's functionality to Claude Code, Cline, and other MCP-compatible tools. Tools included: - Feature management (list, create, update, delete, move) - Agent control (start, stop, list, send messages) - Queue management (add, list, clear) - Context files (list, get, create, delete) - Project spec (get, update) - Utilities (health check, board summary) Usage: Configure in ~/.claude/claude_desktop_config.json with AUTOMAKER_API_URL and AUTOMAKER_API_KEY environment variables. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Document how to set AUTOMAKER_API_KEY for consistent authentication during development (useful for MCP and scripts). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
Caution Review failedThe pull request is closed. WalkthroughA new MCP (Model Context Protocol) server package is introduced that exposes Automaker's board and feature management capabilities over a stdio-based protocol. The package includes server implementation with API gateway, tool catalog, tool dispatcher, TypeScript configuration, and comprehensive documentation. Changes
Sequence Diagram(s)sequenceDiagram
participant Client as Client/Claude
participant Server as MCP Server
participant Dispatcher as Tool Dispatcher
participant Gateway as API Gateway
participant API as Automaker API
Client->>Server: Request tool (e.g., list features)
Server->>Dispatcher: handleTool(toolName, input)
Dispatcher->>Gateway: apiCall(endpoint, method, payload)
Gateway->>API: HTTP request
API-->>Gateway: Response
Gateway-->>Dispatcher: Parsed result
Dispatcher-->>Server: Formatted response
Server-->>Client: MCP tool result (JSON)
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes ✨ Finishing touches
🧪 Generate unit tests (beta)
Comment |
This was referenced Feb 4, 2026
This was referenced Feb 11, 2026
This was referenced Apr 12, 2026
mabry1985
added a commit
that referenced
this pull request
Apr 21, 2026
…v table (#3545) Both variables are used in server code (workstacean-api.client.ts, project-registry-service.ts, planning-service.ts) but were missing from the documented environment variable reference in installation.md. Fixes #467 (CodeRabbit finding #3): WORKSTACEAN integration env vars were only visible buried in code comments, not in the setup docs. Co-authored-by: Automaker <automaker@localhost> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
Docker Fixes
zoddependency toapps/uifast-xml-parserdependency tolibs/spec-parserlibs/spec-parser/package.jsonto Dockerfile COPY commandsVITE_SERVER_URLdefault to empty string for nginx proxy/apiroutes to server containerGH_TOKENenvironment variable support to docker-compose.ymlMCP Server (
packages/mcp-server)New MCP server with 22 tools for Claude Code integration:
Documentation
HANDOFF.md- Production deployment guide with:README.md- Fixed API key instructions for developmentScripts
scripts/batch-create-features.sh- Batch create features via APIscripts/example-features.json- Example feature formatTest plan
🤖 Generated with Claude Code
Summary by CodeRabbit
New Features
Documentation