A step-by-step walkthrough of using Claude Code with Colign's MCP server to go from a structured spec to a working implementation — without copy-pasting a single line.
What if your AI coding agent could read your team's spec directly — no copy-pasting, no context loss, no manual bridging? That's exactly what happens when you connect Claude Code to Colign via MCP.
Here's a real walkthrough of the entire flow.
Install the Colign plugin for Claude Code:
```bash claude plugin add colign/plugin ```
Or configure the MCP server directly in your settings:
```json { "mcpServers": { "colign": { "type": "streamableHttp", "url": "https://mcp.colign.dev", "headers": { "Authorization": "Bearer your-api-token" } } } } ```
Run `/colign:onboard` to verify your connection.
Use the `/colign:explore` skill to browse your project:
``` /colign:explore ```
Claude Code lists your projects and Changes. Select the Change you want to implement. The agent reads:
All of this arrives as structured data via MCP. No copy-pasting.
Use `/colign:plan` to have Claude Code create an implementation plan:
``` /colign:plan ```
The agent reads the spec and generates:
Review the plan. Adjust if needed. This is the last human checkpoint before code generation.
Use `/colign:implement` to start coding:
``` /colign:implement ```
Claude Code works through each task:
You can watch in real-time as tasks flip from "todo" to "done" in your Colign dashboard.
Use `/colign:complete` to wrap up:
``` /colign:complete ```
The agent verifies:
If everything checks out, the Change advances to the next workflow state.
In 10 minutes, you went from a team-approved spec to a working implementation. Here's what's different from the traditional workflow:
| Traditional | With Colign + Claude Code | |-------------|--------------------------| | Copy spec from Notion | Agent reads spec via MCP | | Manually explain context | Project Memory provides context | | Hope AI understands scope | Out of Scope section prevents drift | | Manually track progress | Tasks auto-update via MCP | | Manually verify completeness | Acceptance criteria checked |
Zero copy-paste. Zero context loss. Full traceability.
The 10 minutes isn't the impressive part. What's impressive is the accuracy. Because the AI agent has direct access to the structured spec, acceptance criteria, and project memory, it builds the right thing the first time.
No rework cycles. No "that's not what I meant." No integration failures because developer A read a different version of the spec than developer B.
This is what spec-driven development looks like in practice.
Q: Does this work with Cursor or other AI tools? A: Yes. Any MCP-compatible tool can connect to Colign's MCP server. The workflow is the same.
Q: What if the spec is wrong? A: That's why specs are reviewed and approved before dispatch. Catching errors at the spec stage is 10x cheaper than catching them in code.
Q: Can I modify the code after generation? A: Absolutely. The generated code is yours. Edit, refactor, extend as needed. The spec remains the source of truth for what was intended.