nautex
Verified Safeby hmldns
Overview
Integrate Nautex AI's requirements and task management with various LLM Coding Agents for guided, step-by-step software development.
Installation
uvx nautex mcpEnvironment Variables
- NAUTEX_API_HOST
- NAUTEX_API_TOKEN
- NAUTEX_AGENT_INSTANCE_NAME
- NAUTEX_PROJECT_ID
- NAUTEX_PLAN_ID
- NAUTEX_DOCUMENTS_PATH
- NAUTEX_AGENT_TYPE
Security Notes
The server primarily acts as a local proxy between AI coding agents (via Model-Context-Protocol over stdin/stdout) and the remote Nautex AI platform. It reads and writes configuration files (JSON, TOML) in project-specific or home directories (`.nautex/config.json`, `.cursor/mcp.json`, `~/.codex/config.toml`, `opencode.json`). External commands are executed via `subprocess` for specific agent integrations (e.g., `claude mcp add`, `cp` for backup); these commands are hardcoded and do not appear to take arbitrary user input, mitigating direct RCE risks. Sensitive API tokens are handled using `SecretStr` and stored in `.env` files with an attempt at in-memory shredding of non-relevant lines, which is a good practice. The `NAUTEX_API_HOST` is configurable via environment variables, requiring users to trust the specified host.
Similar Servers
sudocode
Git-native spec and issue management for AI-assisted software development, enabling agents to track context, manage tasks, and collaborate through structured workflows and feedback loops within a version-controlled repository. It provides agent orchestration, context persistence, and real-time visualization for complex, long-horizon software development tasks.
conductor-tasks
Conductor Tasks acts as an intelligent AI-powered assistant for developers, streamlining the entire development lifecycle from task generation and planning (parsing PRDs, expanding tasks, generating implementation steps) to execution and code modification (generating diffs). It provides visual task management, integrates with various IDEs, and leverages multiple LLM providers for optimal results and cost efficiency.
responsible-vibe-mcp
Manages conversation state and guides LLM coding agents through structured software development workflows with long-term project memory and multi-agent collaboration.
codebase-context
Provides AI coding agents with real-time, context-rich insights into a codebase's patterns, libraries, architecture, and conventions to improve code generation quality and alignment with team standards.