mcp-aurai-server
Verified Safeby LZMW
Overview
Enables a local AI to receive iterative guidance from a remote, superior AI for solving programming problems, fostering hierarchical AI collaboration.
Installation
python -m mcp_aurai.serverEnvironment Variables
- AURAI_API_KEY
- AURAI_PROVIDER
- AURAI_BASE_URL
- AURAI_MODEL
- AURAI_MAX_ITERATIONS
- AURAI_TEMPERATURE
- AURAI_MAX_TOKENS
Security Notes
The server uses `json.loads` to parse LLM responses and certain tool parameters (`context`, `files`, `project_info`). While the expected JSON schema is defined, a compromised or misconfigured LLM could potentially craft malicious JSON content. The server itself does not execute `action_items` or `code_changes` returned in the JSON; these are intended for the client (Claude Code) to interpret and act upon. The overall system security relies on the client's safe handling of these structured outputs.
Similar Servers
mcp-sequentialthinking-tools
Guides LLM-driven sequential problem-solving by breaking down complex problems into manageable steps and providing confidence-scored recommendations for MCP tool usage at each stage.
cclsp
Integrate LLM-based coding agents with Language Server Protocol (LSP) servers to enable robust code navigation, symbol resolution, and refactoring across various programming languages.
In-Memoria
Provides persistent intelligence infrastructure for AI agents, enabling them to understand codebases, detect patterns, predict coding approaches, and generate context-aware insights.
consult-llm-mcp
An MCP server that allows AI agents like Claude Code to consult stronger, more capable AI models (e.g., GPT-5.2, Gemini 3.0 Pro) for complex code analysis, debugging, and architectural advice.