{"id":24035,"library":"minimax-coding-plan-mcp","title":"MiniMax Coding Plan MCP","description":"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.","status":"active","version":"0.0.4","language":"python","source_language":"en","source_url":"https://github.com/minimax-coding-plan/mcp-server","tags":["mcp","coding-plan","minimax","ai"],"install":[{"cmd":"pip install minimax-coding-plan-mcp","lang":"bash","label":"Install from PyPI"}],"dependencies":[],"imports":[{"note":"Main class to instantiate the MCP server.","symbol":"CodingPlanMCP","correct":"from minimax_coding_plan_mcp import CodingPlanMCP"}],"quickstart":{"code":"from minimax_coding_plan_mcp import CodingPlanMCP\n\n# Initialize server with API key from environment variable\nserver = CodingPlanMCP(api_key=os.environ.get('MINIMAX_API_KEY', ''))\n\n# Run the MCP server\nserver.run()","lang":"python","description":"Basic usage to start the MiniMax Coding Plan MCP server."},"warnings":[{"fix":"Use `CodingPlanMCP(api_key='key')` instead of `CodingPlanMCP('key')`.","message":"Version 0.0.3 changed the initialization signature; `api_key` is now required and no longer accepts positional argument for token.","severity":"breaking","affected_versions":">=0.0.3"},{"fix":"Set `os.environ['MCP_PORT'] = '8080'` before starting the server.","message":"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.","severity":"gotcha","affected_versions":"all"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"Run `pip install minimax-coding-plan-mcp` and ensure the virtual environment is activated.","cause":"Package not installed or installed globally but running in virtualenv.","error":"ImportError: No module named 'minimax_coding_plan_mcp'"},{"fix":"Pass api_key as keyword argument: `CodingPlanMCP(api_key='your_key')`.","cause":"Old code passing api_key as positional argument, no longer supported.","error":"TypeError: __init__() missing 1 required positional argument: 'api_key'"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}