github_sync_unavailable
Checks and confirms GitHub synchronization is unavailable in the Radicle + GitHub MCP Server, ensuring users are informed when cross-platform repository syncing cannot be performed.
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. It is a placeholder that returns an error message when GitHub-Radicle sync module is not available (SYNC_AVAILABLE=False). The @mcp.tool() decorator also serves as registration.@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."