get_status
Check the current operational status of Intruder API using this tool in intruder-mcp server to ensure system functionality and monitor API health.
Instructions
Get the status of the Intruder API
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"properties": {},
"title": "get_statusArguments",
"type": "object"
}
Implementation Reference
- intruder_mcp/server.py:23-27 (handler)The handler function for the 'get_status' MCP tool. It retrieves the health status from the Intruder API client and returns the status string. The @mcp.tool() decorator also serves as the registration.@mcp.tool() async def get_status() -> str: """Get the status of the Intruder API""" health = api.get_health() return health.status