ping
Verify connectivity to the REAPER bridge by checking reachability and returning version information for both bridge and REAPER software.
Instructions
Check that the bridge is reachable. Returns bridge_version and reaper_version.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/reaper_mcp/reaper_adapter.py:21-22 (handler)Reaper adapter ping method that calls the underlying bridge client.
def ping(self) -> dict[str, Any]: return self._client.call("ping") - src/reaper_mcp/server.py:37-43 (handler)MCP tool definition and registration for the 'ping' tool.
@mcp.tool() def ping() -> dict[str, Any]: """Check that the bridge is reachable. Returns bridge_version and reaper_version.""" try: return _wrap(adapter.ping()) except Exception as exc: return _err(exc)