Skip to main content
Glama
intruder-io

intruder-mcp

Official

get_status

Check the operational status of the Intruder API to confirm it is available and responding.

Instructions

Get the status of the Intruder API

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The main handler for the get_status tool. It calls api.get_health() and returns the status string.
    @mcp.tool()
    async def get_status() -> str:
        """Get the status of the Intruder API"""
        health = api.get_health()
        return health.status
  • The Health model schema that defines the response shape, including the 'status' field returned by get_status.
    class Health(BaseModel):
        status: str = Field(..., description="API health status")
        authenticated_as: str = Field(..., format="email")
  • The API client helper method that actually performs the HTTP GET request to /health/ endpoint and returns a Health object.
    def get_health(self) -> Health:
        return Health(**self.client.get(f"{self.base_url}/health/").json())
  • The tool is registered via the @mcp.tool() decorator on the get_status function within the FastMCP instance.
    @mcp.tool()
    async def get_status() -> str:
Behavior2/5

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

No annotations are provided, so the description must carry behavioral disclosure. It only repeats the name's implication ('Get the status'), with no detail on what status entails, whether it is a quick/read-only operation, or what side effects exist. The output schema exists but the description adds no context beyond it.

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, clear sentence with no unnecessary words. It is appropriately sized for a zero-parameter tool, though it could be slightly more descriptive.

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

Completeness4/5

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

Given the tool's simplicity (no parameters, output schema present), the description is nearly complete. The only gap is that it does not elaborate on the nature of 'status', but the output schema likely covers the response format.

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 tool has zero parameters, so the input schema fully covers parameter meaning. The description does not need to add parameter details, and the baseline of 4 is appropriate.

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

Purpose5/5

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

The description clearly states 'Get the status of the Intruder API', specifying a unique verb-resource combination. This distinguishes it from sibling tools focused on specific resources (e.g., get_scan, get_user).

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 on when to use this tool versus alternatives. It does not explain context, prerequisites, or why a user would choose this over the many sibling tools.

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

Install Server

Other Tools

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/intruder-io/intruder-mcp'

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