MiniMax Coding Plan MCP
raw JSON → 0.0.4 verified Fri May 01 auth: no python
A specialized MCP (Model Context Protocol) server designed for MiniMax coding-plan users, enabling AI agents to interact with coding plans via a standardized interface. Version 0.0.4, early-stage development with ongoing updates.
pip install minimax-coding-plan-mcp Common errors
error ImportError: No module named 'minimax_coding_plan_mcp' ↓
cause Package not installed or installed globally but running in virtualenv.
fix
Run
pip install minimax-coding-plan-mcp and ensure the virtual environment is activated. error TypeError: __init__() missing 1 required positional argument: 'api_key' ↓
cause Old code passing api_key as positional argument, no longer supported.
fix
Pass api_key as keyword argument:
CodingPlanMCP(api_key='your_key'). Warnings
breaking Version 0.0.3 changed the initialization signature; `api_key` is now required and no longer accepts positional argument for token. ↓
fix Use `CodingPlanMCP(api_key='key')` instead of `CodingPlanMCP('key')`.
gotcha The MCP server binds to localhost:8000 by default; ensure the port is not already in use, and configure via environment variable `MCP_PORT` if needed. ↓
fix Set `os.environ['MCP_PORT'] = '8080'` before starting the server.
Imports
- CodingPlanMCP
from minimax_coding_plan_mcp import CodingPlanMCP
Quickstart
from minimax_coding_plan_mcp import CodingPlanMCP
# Initialize server with API key from environment variable
server = CodingPlanMCP(api_key=os.environ.get('MINIMAX_API_KEY', ''))
# Run the MCP server
server.run()