Skip to main content
Glama
robinmordasiewicz

F5 Cloud Status MCP Server

F5 Cloud Status MCP Server

MCP server for monitoring F5 Distributed Cloud service status, components, incidents, and maintenance.

Installation

{
  "mcpServers": {
    "f5xc-cloudstatus": {
      "command": "npx",
      "args": ["-y", "@robinmordasiewicz/f5xc-cloudstatus-mcp@latest"]
    }
  }
}

Config file locations:

  • Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) | %APPDATA%\Claude\claude_desktop_config.json (Windows)

  • Claude Code: claude mcp add f5xc-cloudstatus npx @robinmordasiewicz/f5xc-cloudstatus-mcp@latest

  • VS Code: code --add-mcp '{"name":"f5xc-cloudstatus","command":"npx","args":["@robinmordasiewicz/f5xc-cloudstatus-mcp@latest"]}'

  • Cursor: .cursor/mcp.json

  • Windsurf: Plugins → Search "F5 Cloud Status" → Install

Related MCP server: F5 MCP Server

Tools

Tool

Description

f5-status-get-overall

Current overall status

f5-status-get-components

All service components with status

f5-status-get-component

Specific component details

f5-status-get-incidents

Current and recent incidents

f5-status-get-maintenance

Scheduled maintenance windows

f5-status-search

Search components, incidents, maintenance

Example Queries

What is the current status of F5 Cloud services?
Are there any active incidents?
Show me components that are degraded
What maintenance is scheduled?
Search for API Gateway

Performance

Browser Pooling

The MCP server uses browser instance pooling for 40-60% faster scraping performance. Browser instances are reused across operations instead of creating new ones each time.

Configuration:

  • SCRAPER_POOLING_ENABLED=true - Enable/disable pooling (default: true)

  • SCRAPER_POOLING_MIN_SIZE=1 - Minimum browsers in pool (default: 1)

  • SCRAPER_POOLING_MAX_SIZE=3 - Maximum browsers in pool (default: 3)

  • SCRAPER_POOLING_IDLE_TIMEOUT=60000 - Close idle browsers after ms (default: 60s)

  • SCRAPER_POOLING_ACQUIRE_TIMEOUT=10000 - Browser acquisition timeout (default: 10s)

  • SCRAPER_POOLING_HEALTH_CHECK_INTERVAL=30000 - Health check frequency (default: 30s)

  • SCRAPER_POOLING_ENABLE_METRICS=true - Track performance metrics (default: true)

Performance Gains:

  • Single scrape: ~50% faster (2500ms → 1200ms)

  • Parallel scrapes: ~51% faster (8300ms → 4100ms)

  • Cache hit rate: >80% after warmup

Resource Usage:

  • Each browser: ~150MB memory

  • Max pool (3 browsers): ~450MB memory

  • Idle cleanup: Automatic after 60s

Disable if needed:

SCRAPER_POOLING_ENABLED=false

License

MIT

Available Tools

6 tools
f5-status-get-componentC

Get detailed information about a specific F5 Cloud service component by ID or name

ParametersJSON Schema
NameRequiredDescriptionDefault
idNoComponent ID
nameNoComponent name

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It states it 'gets' information, implying a read-only operation, but doesn't disclose behavioral traits such as authentication requirements, rate limits, error handling, or what 'detailed information' includes. This leaves significant gaps for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste. It is front-loaded with the core action and resource, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations, no output schema, and a read operation with two parameters, the description is incomplete. It lacks details on return values, error cases, or behavioral context, which are critical for an agent to use the tool effectively without structured guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with both parameters 'id' and 'name' documented in the schema. The description adds that these are used to retrieve a 'specific' component, but doesn't provide additional semantics like format examples, exclusivity, or precedence. Baseline 3 is appropriate as the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'detailed information about a specific F5 Cloud service component', specifying it can be retrieved by 'ID or name'. It distinguishes from sibling 'f5-status-get-components' (plural) by focusing on a single component, but doesn't explicitly contrast with other siblings like 'f5-status-get-overall'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. It doesn't mention when to choose this over 'f5-status-get-components' for multiple components, 'f5-status-search' for broader queries, or other siblings for different data types like incidents or maintenance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f5-status-get-componentsC

Get all F5 Cloud service components with their current operational status, organized by category (Distributed Cloud Services, XC App Stack, etc.)

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoFilter components by status
groupNoFilter components by group name

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It describes a read operation ('Get') and mentions organization by category, but lacks details on permissions required, rate limits, pagination, error handling, or response format. For a tool with no annotation coverage, this leaves significant gaps in understanding how it behaves beyond basic functionality.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose. It avoids redundancy and wastes no words, though it could be slightly more structured (e.g., by explicitly mentioning filtering options). Every part of the sentence contributes to understanding the tool's function.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (read-only, 2 optional parameters, no output schema), the description is minimally adequate. It covers what the tool does but lacks behavioral details (e.g., response format, error cases) and usage context. Without annotations or output schema, the agent must rely on the description and schema alone, which leaves gaps in operational understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters ('status' and 'group') with descriptions and an enum for 'status'. The description adds no additional parameter semantics beyond implying filtering (via 'organized by category'), which aligns with the schema but doesn't provide extra value like examples or constraints. Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get all F5 Cloud service components with their current operational status, organized by category'. It specifies the verb ('Get'), resource ('F5 Cloud service components'), and scope ('all'), and distinguishes it from siblings like 'f5-status-get-component' (singular) and 'f5-status-get-overall' (summary). However, it doesn't explicitly differentiate from 'f5-status-search', which might also retrieve components, so it's not a perfect 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to choose this over 'f5-status-get-component' (for single components), 'f5-status-get-overall' (for summary status), or 'f5-status-search' (for filtered searches). There's no context on prerequisites, exclusions, or typical use cases, leaving the agent to infer usage from the name and description alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f5-status-get-incidentsC

Get current and recent incidents affecting F5 Cloud services, including status updates and affected components

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoFilter incidents by status
impactNoFilter incidents by impact level
daysNoGet incidents from the last N days (default: 7)
unresolved_onlyNoOnly return unresolved incidents (default: false)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'current and recent incidents' and filtering capabilities, but lacks details on permissions, rate limits, pagination, error handling, or what 'recent' means beyond the 'days' parameter. This is a significant gap for a tool with multiple parameters and no output schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose. It avoids unnecessary words and directly communicates the tool's function, though it could be slightly more structured for clarity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (4 parameters, no annotations, no output schema), the description is insufficient. It doesn't explain return values, error cases, or behavioral nuances like how 'current and recent' interacts with the 'days' parameter. For a tool with this level of detail in the schema, the description should provide more contextual guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents all parameters. The description adds no additional parameter semantics beyond implying filtering (e.g., 'including status updates' loosely relates to the 'status' parameter). This meets the baseline of 3 since the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get') and resource ('current and recent incidents affecting F5 Cloud services'), with additional context about what information is included ('status updates and affected components'). It distinguishes from some siblings (e.g., 'get-component' or 'get-overall') by focusing on incidents, but doesn't explicitly differentiate from 'search' which might overlap.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives like 'f5-status-search' or other sibling tools. The description implies it's for incidents, but doesn't specify scenarios, prerequisites, or exclusions that would help an agent choose appropriately among the available options.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f5-status-get-maintenanceC

Get scheduled, active, and upcoming maintenance windows for F5 Cloud services

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoFilter maintenance by status
active_onlyNoOnly return active maintenance windows (default: false)
upcoming_onlyNoOnly return upcoming maintenance windows (default: false)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states what the tool retrieves but does not cover critical aspects like authentication requirements, rate limits, error handling, or response format. This leaves significant gaps in understanding how the tool behaves in practice.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, direct sentence that efficiently conveys the core purpose without unnecessary words. It is front-loaded with the main action and resource, making it highly concise and well-structured for quick comprehension.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete for a tool with three parameters and no structured output information. It fails to address behavioral traits, response details, or usage context, which are essential for the agent to operate effectively in a real-world scenario.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, clearly documenting all three parameters with enums and defaults. The description does not add any semantic details beyond what the schema provides, such as explaining interactions between parameters (e.g., 'active_only' vs. 'upcoming_only'). Thus, it meets the baseline for high schema coverage without enhancing parameter understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get') and the resource ('scheduled, active, and upcoming maintenance windows for F5 Cloud services'), making the purpose specific and understandable. However, it does not explicitly differentiate from sibling tools like 'f5-status-get-incidents' or 'f5-status-search', which might also retrieve status-related information, leaving some ambiguity in sibling differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives, such as the sibling tools listed. It lacks explicit instructions on context, prerequisites, or exclusions, leaving the agent without clear usage direction beyond the basic purpose.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

f5-status-get-overallB

Get the current overall status of F5 Cloud services including operational state and service health indicator

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves status information, implying a read-only operation, but doesn't clarify aspects like authentication requirements, rate limits, error handling, or what the response format looks like. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core action ('Get the current overall status') and specifies the scope ('of F5 Cloud services') and details ('including operational state and service health indicator'). There is no wasted verbiage, making it highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is adequate for a basic status check. However, it lacks information on behavioral aspects like response format or error handling, which would be helpful for an agent to use it effectively. Without annotations or output schema, the description should ideally provide more context on what to expect from the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description doesn't add parameter information, which is appropriate here. Baseline is 4 for zero parameters, as the description focuses on the tool's purpose without unnecessary details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('current overall status of F5 Cloud services'), including what information it retrieves ('operational state and service health indicator'). It distinguishes from siblings by specifying 'overall' status rather than component-specific or incident-related data, though it doesn't explicitly name alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context by specifying 'overall status' versus more detailed components or incidents, suggesting this tool is for high-level health checks. However, it doesn't provide explicit guidance on when to use this versus alternatives like 'f5-status-get-components' or 'f5-status-get-incidents', nor does it mention any prerequisites or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updatesv1.0.0
    • First observedf5-status-get-component
    • First observedf5-status-get-components
    • First observedf5-status-get-incidents
    • First observedf5-status-get-maintenance
    • First observedf5-status-get-overall
    • First observedf5-status-search

TDQS

A3.6/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no ambiguity: get-component targets a specific item, get-components lists all, get-incidents focuses on incidents, get-maintenance on maintenance, get-overall on overall status, and search enables keyword queries. The descriptions reinforce these boundaries, making misselection unlikely.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with the prefix 'f5-status-', such as 'f5-status-get-component' and 'f5-status-search'. This uniformity enhances readability and predictability, with no deviations in style or convention.

Tool Count5/5

With 6 tools, the server is well-scoped for monitoring F5 Cloud status, covering key aspects like components, incidents, maintenance, overall status, and search. Each tool earns its place without feeling excessive or insufficient for the domain.

Completeness5/5

The tool set provides complete coverage for status monitoring, including CRUD-like operations (get/list for components, incidents, maintenance) and additional utilities (overall status and search). There are no obvious gaps, enabling agents to handle typical workflows without dead ends.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables management of F5 BIG-IP load balancers through secure authentication and configuration queries. Supports multiple devices with token caching, allowing users to list virtual servers and device configurations through natural language.
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables interaction with F5 devices through the iControl REST API to manage objects like virtual servers, pools, iRules, and profiles. It provides comprehensive tools for listing, creating, updating, and deleting F5 configurations via natural language interfaces.
    -
  • A
    license
    C
    quality
    B
    maintenance
    Monitor the real-time status of 200+ popular APIs and services. Check if services like GitHub, Stripe, AWS, and Slack are experiencing outages or degraded performance directly from your AI assistant.
    5
    23
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Live operational status for 2,400+ major software services — AWS, GitHub, Stripe, OpenAI, Cloudflare, and more — pulled from each provider's official status page and returned as a normalised up / degraded / down result for any service you ask about.
    5
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/robinmordasiewicz/f5xc-cloudstatus-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server