plan-loop
Verified Safeby joseph0926
Overview
Enables an asynchronous plan review loop between Claude-Code (planner) and Codex (reviewer) by sharing session state on disk.
Installation
npx @joseph0926/plan-loopEnvironment Variables
- PLAN_LOOP_STATE_DIR
Security Notes
The server operates primarily through standard I/O (stdio) and manages session state on the local file system (`~/.plan-loop/sessions/`). There is no direct network exposure by the server itself. No usage of `eval` or obvious code obfuscation. No hardcoded sensitive credentials were found. Transitive dependencies for authentication (e.g., `jsonwebtoken` via `@azure/msal-node`) are part of standard SDK usage for the VSCode extension and not directly handled by the core MCP server logic in a risky way. The session files are user-specific, reducing broader system risk.
Similar Servers
codex-mcp-server
Serves as a Model Context Protocol (MCP) bridge to integrate OpenAI's Codex CLI for AI-powered code analysis, generation, and review within various editors like Claude Code, VS Code, and Cursor.
Delphi-MCP-Server
Implements the Model Context Protocol (MCP) in Delphi to enable AI-powered development workflows and integrate with clients like Claude Code.
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.
claude-team
Orchestrate multiple AI coding sessions (Claude Code, Codex) via iTerm2, enabling parallel development, isolated work environments, and streamlined task management.