- Home
- F5 Cloud Status MCP Server
- installation
- Claude Code Installation Guide
Claude Code Installation Guide
Claude Code is the official Claude command-line interface. Installing the F5 XC Cloud Status MCP server takes just 2 steps.
Prerequisites
Section titled “Prerequisites”Before starting, ensure you have:
- Claude Code installed (
which claude-codeshould return a path) - Node.js 18.0.0 or higher (
node --version) - npm installed (comes with Node.js)
Installation
Section titled “Installation”Step 1: Locate Your Claude Code Configuration
Section titled “Step 1: Locate Your Claude Code Configuration”Claude Code uses a .mcp.json file to register MCP servers. This file is typically located in your project root:
# Navigate to your Claude Code projectcd /path/to/your/project
# Or if you want a global configuration, use:# ~/.claude/.mcp.jsonStep 2: Add the F5 XC Cloud Status MCP Server
Section titled “Step 2: Add the F5 XC Cloud Status MCP Server”If the .mcp.json file doesn’t exist, create it:
cat > .mcp.json << 'EOF'{ "mcpServers": { "f5xc-cloudstatus": { "command": "npx", "args": ["-y", "@robinmordasiewicz/f5xc-cloudstatus-mcp@latest"] } }}EOFIf the file already exists, edit it to add the server configuration:
{ "mcpServers": { "f5xc-cloudstatus": { "command": "npx", "args": ["-y", "@robinmordasiewicz/f5xc-cloudstatus-mcp@latest"] } }}Verification
Section titled “Verification”Direct Test
Section titled “Direct Test”Try this in Claude Code immediately:
Prompt: "What is the current status of F5 Cloud services?"Expected: Current F5 Cloud operational statusCommand Line Verification
Section titled “Command Line Verification”# Check if Claude Code can access the servernpx @robinmordasiewicz/f5xc-cloudstatus-mcp@latest --versionConfiguration Reference
Section titled “Configuration Reference”| Setting | Value | Purpose |
|---|---|---|
command | npx | Node package executor |
args[0] | -y | Auto-confirm package execution |
args[1] | @robinmordasiewicz/f5xc-cloudstatus-mcp@latest | Package name and version |
Troubleshooting
Section titled “Troubleshooting””npx: command not found”
Section titled “”npx: command not found””- Cause: Node.js or npm not properly installed
- Solution: Install Node.js from https://nodejs.org (v18.0.0+)
Server not showing up in Claude Code
Section titled “Server not showing up in Claude Code”- Verify
.mcp.jsonis in your project root - Check JSON syntax with
python -m json.tool .mcp.json - Restart Claude Code CLI tool
Next Steps
Section titled “Next Steps”- Review Troubleshooting Guide if issues arise
- Check Home for tool descriptions and verification queries