This guide helps you diagnose and resolve common issues with MockLoop MCP.
# Check Python version
python --version
python3 --version
# Use specific Python version
python3.10 -m venv .venv# Clear pip cache
pip cache purge
# Reinstall dependencies
pip uninstall -r requirements.txt -y
pip install -r requirements.txt# Check if port is in use
lsof -i :8000
# Check MCP server logs
mcp dev src/mockloop_mcp/main.py --verbose- Verify MCP client configuration
- Check file paths in configuration
- Ensure virtual environment is activated
- Verify OpenAPI specification is valid
- Check network connectivity for remote specs
- Ensure sufficient disk space
- Check Docker status
- Verify port availability
- Review server logs
- Check this troubleshooting guide
- Search GitHub Issues
- Create a new issue with detailed information
# System information
python --version
docker --version
pip list | grep -E "(fastapi|mkdocs|mcp)"
# Check running processes
ps aux | grep -E "(mkdocs|uvicorn|docker)"
# Check ports
netstat -tulpn | grep -E "(8000|3000|5000)"