OpenCodeMCP
Verified Safeby silvabyte
Overview
An MCP server that enables conversational coding via ChatGPT or any MCP-enabled LLM by bridging to an OpenCode agent.
Installation
bun run startEnvironment Variables
- MCP_API_KEY
- MCP_PORT
- OPENCODE_URL
- PROJECT_ALIASES
Security Notes
The server implements API key authentication (Bearer token) for its primary MCP endpoint, which is a crucial security measure. It loads secrets from environment variables (MCP_API_KEY) and does not contain hardcoded credentials or uses 'eval'. The health check endpoint is publicly accessible without authentication, which is standard practice. The overall security relies heavily on the strength of the user-provided MCP_API_KEY and how the server is exposed (e.g., via Cloudflare Tunnel).
Similar Servers
wcgw
Empowering chat applications to code, build, and run on the local machine using an MCP server with tightly integrated shell and code editing tools.
cclsp
MCP server to integrate LLM-based coding agents with Language Server Protocol (LSP) servers for robust symbol resolution and code navigation.
codex-mcp-server
This MCP server acts as a wrapper for the OpenAI Codex CLI, providing session management, model selection, and native resume support for AI-assisted coding.
consult-llm-mcp
An MCP server that allows an AI agent (Claude Code) to consult more powerful external AI models for code analysis, debugging, and review, providing relevant files and git diffs as context.