status
Check RSpace server connectivity and system health to verify accessibility before performing operations.
Instructions
System health check - determines if RSpace server is accessible and running
Usage: Call this first to verify connectivity before other operations Returns: Status message from RSpace server
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- main.py:101-110 (handler)The handler function for the 'status' MCP tool. It performs a health check on the RSpace server by calling eln_cli.get_status() and returns the status message. Registered via the @mcp.tool decorator.@mcp.tool(tags={"rspace"}) def status() -> str: """ System health check - determines if RSpace server is accessible and running Usage: Call this first to verify connectivity before other operations Returns: Status message from RSpace server """ resp = eln_cli.get_status() return resp['message']