Skip to main content
Glama
fovi-llc
by fovi-llc

rad_help

Access documentation for Radicle commands to understand usage and options for peer-to-peer code collaboration.

Instructions

Get help for Radicle commands. Args: command: Specific command to get help for (optional)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
commandNo

Implementation Reference

  • The handler function for the 'rad_help' tool. It runs 'rad --help' or 'rad <command> --help' using the run_rad_command helper and formats the output. The @mcp.tool() decorator registers it as an MCP tool. The function signature and docstring define the input schema.
    @mcp.tool() async def rad_help(command: Optional[str] = None) -> str: """ Get help for Radicle commands. Args: command: Specific command to get help for (optional) """ if command: result = await run_rad_command(["rad", command, "--help"]) else: result = await run_rad_command(["rad", "--help"]) if result["success"]: return f"📖 Radicle Help:\n{result['stdout']}" else: return f"❌ Failed to get help: {result['stderr']}"

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/fovi-llc/radicle-mcp'

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