Troubleshooting Guide¶
This guide helps you resolve common issues when installing or using the F5 XC Cloud Status MCP server.
Common Issues Across All Platforms¶
Issue 1: "npx: command not found"¶
Symptoms:
Root Cause: Node.js or npm is not properly installed or not in your PATH
Solutions: 1. Install Node.js:
# Check if Node.js is installed
node --version
npm --version
# If not installed, download from https://nodejs.org
# Install version 18.0.0 or higher
-
Update PATH (if Node.js is installed but not in PATH):
-
Reinstall Node.js:
Verification:
node --version # Should be v18.0.0 or higher
npm --version # Should be 8.0.0 or higher
npx --version # Should work without error
Issue 2: "Cannot find module '@robinmordasiewicz/f5xc-cloudstatus-mcp'"¶
Symptoms:
Root Cause: - Package not found on npm registry - Network connectivity issue - npm cache corrupted
Solutions:
-
Check npm registry:
-
Clear npm cache:
-
Check internet connection:
-
Try alternative package source:
Verification:
Issue 3: "EACCES: permission denied"¶
Symptoms:
Root Cause: npm modules directory doesn't have write permissions
Solutions:
-
Fix npm permissions (recommended):
-
Alternative: Change npm default directory:
-
Never use sudo with npm:
Verification:
Issue 4: "Invalid JSON syntax"¶
Symptoms:
Root Cause: Missing commas, quotes, or brackets in configuration file
Solutions:
-
Validate JSON syntax:
-
Common JSON errors:
-
Use an editor with JSON validation:
Verification:
# After fixing JSON, validate again
python -m json.tool <config-file>
# Should show formatted JSON without errors
Platform-Specific Issues¶
Claude Code Issues¶
Issue: Server not showing up
Solutions: 1. Verify .mcp.json exists:
-
Check JSON syntax:
-
Verify package can be accessed:
-
Try using local build:
OpenCode Issues¶
Issue: Server not appearing after configuration
Solutions: 1. Verify configuration location:
ls -la ~/.config/opencode/opencode.json
cat ~/.config/opencode/opencode.json | grep f5xc-cloudstatus
-
Check JSON syntax:
-
Restart OpenCode:
-
Check MCP configuration structure:
VS Code Issues¶
Issue: "VS Code version too old"
Solutions: 1. Check VS Code version:
- Update VS Code:
Issue: Server not showing in chat
Solutions: 1. Verify configuration was created:
- Reload VS Code:
- Press Cmd+Shift+P (macOS) or Ctrl+Shift+P (Windows/Linux)
- Type "Developer: Reload Window"
-
Press Enter
-
Use
--add-mcpcommand instead: -
Check JSON syntax:
Claude Desktop Issues¶
Issue: Server not appearing after restart
Solutions: 1. Verify configuration was saved:
-
Check JSON syntax:
-
Fully restart Claude Desktop:
-
Restore from backup if corrupted:
Issue: "It just keeps asking for Node to be installed"
Solutions: 1. Verify Node.js PATH:
-
Check Node.js installation:
-
Update PATH for Claude Desktop: Claude Desktop may need to read your shell profile. Add Node.js to your PATH:
API Connectivity Issues¶
Issue: "F5 Cloud API not responding"
Symptoms:
Root Cause: - F5 Cloud API is temporarily unavailable - Network connectivity issue - Incorrect API URL
Solutions:
-
Check F5 Cloud Status:
-
Verify network connectivity:
-
Check firewall/proxy settings:
- Ensure firewall allows outbound HTTPS connections
-
Check if proxy is interfering with API calls
-
Wait and retry:
- If F5 Cloud is experiencing issues, wait and try again
Performance Issues¶
Issue: Slow response times
Symptoms:
Root Cause: - Network latency - F5 Cloud API slow - System resources constrained
Solutions:
-
Check network speed:
-
Check system resources:
-
Retry with patience:
- F5 Cloud API may have temporary delays
- Expected response time is typically < 5 seconds
Getting Help¶
If you can't resolve your issue:
- Check Documentation:
- Review the platform-specific guide you're using
-
Check Home for general information
-
Verify Prerequisites:
- Node.js 18.0.0+ installed
- npm available
- Internet connection working
-
F5 Cloud API accessible
-
Gather Diagnostic Information:
-
Report Issues:
- GitHub Issues: https://github.com/robinmordasiewicz/f5xc-cloudstatus-mcp/issues
- Include diagnostic information from above
- Include the exact error message and steps to reproduce
Last Updated: January 2026 Version: 1.3.0+ Status Page: https://www.f5cloudstatus.com