- Home
- MCP servers
- F5 Cloud Status
F5 Cloud Status
- javascript
1
GitHub Stars
javascript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"robinmordasiewicz-f5cloudstatus-mcp": {
"command": "npx",
"args": [
"-y",
"f5cloudstatus-mcp@latest"
]
}
}
}The F5 Cloud Status MCP Server provides real-time monitoring of F5 Cloud services, including overall status, individual components, incidents, and maintenance windows. It is designed to be consumed by MCP clients to deliver up-to-date status information to your workflows, dashboards, and automated alerts.
How to use
You connect an MCP client to the F5 Cloud Status MCP Server to retrieve current service status, component health, incidents, and maintenance information. Use the six built-in MCP tools to fetch: the overall status, a list of components with their statuses, detailed information about a specific component, current and recent incidents, scheduled maintenance, and a keyword-based search across components, incidents, and maintenance.
How to install
Prerequisites you need before installing: Node.js and npm (or npm-compatible tooling) installed on your system.
Base installation (recommended MCP setup)
{
"mcpServers": {
"f5_cloud_status": {
"command": "npx",
"args": ["-y", "f5cloudstatus-mcp@latest"]
}
}
}
Alternative installation: Global NPM
If you prefer to install the MCP server package globally, you can install the package and reference it in your MCP configuration.
npm install -g f5cloudstatus-mcp
{
"mcpServers": {
"f5_cloud_status": {
"command": "f5cloudstatus-mcp",
"args": []
}
}
}
Run and verify
After configuring, start your MCP client. Verify the connection by checking for the MCP status indicator in your client UI, or by querying the server’s available tools to confirm you receive data.
Notes on configuration and environment
The base configuration uses an automatic download and run strategy via npx to ensure you always work with the latest MCP component. If you use a different installation approach, ensure the command and arguments exactly match the examples above. No additional environment variables are specified in the provided setup.
Security and access
Keep your MCP client configuration secure. Do not expose internal endpoints or tokens in publicly accessible configurations. Use standard best practices for secrets management if your setup requires additional API access.
Troubleshooting
If you encounter connection issues, verify that the MCP client can reach the configured server and that the command and arguments are correctly specified. Ensure you are using the latest MCP client package to avoid compatibility issues.
Available tools
f5-status-get-overall
Fetches the current overall status of all F5 Cloud services in a single consolidated result.
f5-status-get-components
Retrieves all service components with their current operational status, enabling you to see the health of each part.
f5-status-get-component
Gets detailed information about a single specified component, including health metrics and recent updates.
f5-status-get-incidents
Returns current and recent incidents affecting F5 Cloud services, with status and updates.
f5-status-get-maintenance
Provides scheduled, active, and upcoming maintenance windows for F5 Cloud services.
f5-status-search
Searches across components, incidents, and maintenance by keyword to quickly locate relevant items.