hmldns/nautex
If you are the rightful owner of nautex and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
This is an MCP server that integrates PRD and TRD building tool Nautex AI with coding agents.
This is an MCP server that integrates PRD and TRD building tool Nautex AI with the Coding Agents.
Supported agents: Cursor, Claude Code, Gemini CLI (coming soon)
Motivation
Since LLM Coding Agents do not attend team meetings, there is the challenge of conveying complete and detailed product and technical requirements to them.
Nautex AI tool-chain manages step by step guiding of Coding Agents so they implement specification using small, relevant and testable steps.
Core principles are:
- start from foundational parts, de-risk them, then build up;
- do not overwhelm Coding Agents by large problem at once;
- plan project files map and link them to requirements and to tasks: Coding Agents don't get lost, you know how to navigate brand new code base;
- manage developer attention for verification and validation in right moment for review.
How It Works
Nautex AI acts as an Architect, Technical Product Manager, and Project Manager for coding agents, speeding up AI-assisted development by communicating requirements effectively. This MCP server pulls guidance instructions from Nautex AI; tasks contain to-do items, references to the affected files, and requirements that are automatically synced for the Coding Agent's availability.
By Ivan Makarov
⬇️⬇️⬇️ 📚 Check Presentation ⬇️⬇️⬇️
💡 Usage Flow Presentation (unfold me)
Requirements Specifications
The chatbot conducts a briefing session with you, gathering questions and ideas until complete. It then generates comprehensive product and technical specifications.
(Example: A project I initiated to explore WebRTC.)
Product requirements:
Technical requirements:
Specification Refinement
You fill in details, clarify the specification, and resolve any TODOs flagged by the chatbot during the interview.
Codebase Map and Project Files
You'll occasionally need to review the code, so it's best to know in advance where to look and how everything is organized. This prevents the AI from making decisions—allowing it to focus on writing higher-quality code with greater attention to the task.
The image displays a file map generated by Nautex AI, with files linked to specific requirements and sections.
Agent Tasks
With the code location clarified, tasks are planned: Coding, Testing, and Review.
Reviews are scheduled early to demonstrate progress and verify alignment with goals.
The plan is structured in small, self-contained layers, building your project incrementally like floors in a skyscraper.
Integration
Next, configure the MCP server for Cursor integration: connect to the Nautex cloud platform for tasks, select the project, and choose the plan.
Set the MCP server parameters and provide usage rules for Cursor. Use mouse clicks for automation—the terminal UI functions like a web page.
This utility is available on GitHub.
Once all indicators are green, initiate plan execution.
Coding with Coding Agents
In agent mode, instruct: "pull nautex rules, and proceed with the next scope."
At this stage, your specifications are synchronized in the .nautex directory and accessible to the Coding Agent. The MCP server continuously monitors their relevance.
That's it. You then review and accept substantial code segments that fully align with your expectations and requirements.
Setup
Via Terminal UI
- Go to the new project folder and run in the terminal:
uvx nautex setup
How to Install uv
On macOS and linux:
curl -LsSf https://astral.sh/uv/install.sh | sh
On Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Check the latest instruction from UV repo for details and updates
You should see the terminal user interface
- Follow the guidelines via UI
- go Nautex.ai to sign up and create API token
- In the web app, create PRD and TRD documents:
- Chat with the bot for capturing requirements.
- After initial documents generation Create files map of the project inside the map.
- Then, after reviewing resulted map create implementation plan.
- You can follow
Connect Coding Agent
onboarding flow or setup via TUI. Button will disappear on first MCP request - Go back to the CLI UI
- Select project
- Select implementation plan
- Select agent type
- Ensure you've got right MCP config: manually or via TUI (it will merge with any existing config)
For cursor
- in
.cursor/mcp.json
,
{
"mcpServers": {
"nautex": {
"command": "uvx",
"args": [
"nautex",
"mcp"
]
}
}
}
Note: At config update Cursor asks via popup either you want to enable new MCP, answer yes. In any case in
File -> Preferences -> Cursor Preferences -> Tools & Integrations
nautex MCP should be enabled and green.
- Rules are in
.cursor/rules/
folder via TUI command.
For Claude Code
TUI setup is going to launch this command via a menu for setting up nautex MCP:
claude mcp add nautex -s local -- uvx nautex mcp
- Rules are in
./CLAUDE.md
after set via TUI.
- (Optional) Check MCP server response
uvx nautex mcp test next_scope
- Check MCP configuration works and Coding Agent sees the tools:
Check nautex status
- Tell Coding Agent:
Pull nautex rules and proceed to the next scope
- Proceed with the plan by reviewing progress and supporting the Agent with validation feedback and inputs.