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

rad_status

Check the status of a Radicle repository to monitor activity, changes, or synchronization. Works with the Radicle + GitHub MCP Server for unified code collaboration and management across platforms.

Instructions

Get the status of a Radicle repository. Args: repository_path: Path to the repository (default: current directory)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
repository_pathNo.

Implementation Reference

  • The main handler function for the 'rad_status' tool. It is decorated with @mcp.tool() for registration and executes the 'rad inspect' command to retrieve the repository status.
    @mcp.tool() async def rad_status(repository_path: str = ".") -> str: """ Get the status of a Radicle repository. Args: repository_path: Path to the repository (default: current directory) """ result = await run_rad_command(["rad", "inspect"], cwd=repository_path) if result["success"]: return f"๐Ÿ“Š Repository status:\n{result['stdout']}" else: return f"โŒ Failed to get repository status: {result['stderr']}"

Other Tools

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

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