github_sync_unavailable
Indicates when GitHub synchronization is unavailable in the Radicle + GitHub MCP Server, helping users manage repository operations across both platforms.
Instructions
GitHub sync functionality is not available.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/radicle_mcp/server.py:380-385 (handler)Handler function for the 'github_sync_unavailable' tool, which returns a message indicating that GitHub sync is unavailable when the required module is not installed.@mcp.tool() async def github_sync_unavailable() -> str: """ GitHub sync functionality is not available. """ return "❌ GitHub sync functionality not available. Please ensure the github_radicle_sync module is properly installed."