Radicle + GitHub
Interact with Radicle (peer-to-peer code collaboration) and GitHub through a unified interface.
Radicle + GitHub MCP Server
A Model Context Protocol (MCP) server setup that provides tools for interacting with both Radicle (peer-to-peer code collaboration) and GitHub through a unified interface.
Features
This setup includes two MCP servers:
š Radicle MCP Server (Python)
- Repository Management: Initialize, clone, and inspect Radicle repositories
- Synchronization: Sync repositories with the Radicle network
- Patches & Issues: List and manage patches and issues
- Node Information: Get node ID and remote information
- Help System: Access Radicle command documentation
- š GitHub Integration: Bidirectional sync of issues and PRs between GitHub and Radicle
š GitHub MCP Server (Official)
- Repository Operations: Create, fork, clone GitHub repositories
- Issue Management: Create, update, and manage GitHub issues
- Pull Requests: Manage pull requests and reviews
- File Operations: Read, write, and manage repository files
- Search: Search repositories, issues, and code
- User Management: Manage user and organization information
š GitHub ā Radicle Synchronization
- Bidirectional Issue Sync: Automatically sync issues between platforms
- Idempotent Operations: Safe to run multiple times without duplicates
- Metadata Preservation: Maintains original author, links, and timestamps
- Mapping Database: Tracks relationships between GitHub and Radicle items
- MCP Integration: Available as AI assistant tools
Available Tools
Repository Operations
rad_init: Initialize a new Radicle repositoryrad_clone: Clone an existing repository by RIDrad_status: Get repository status and informationrad_sync: Sync repository with the networkrad_push: Push changes to the network
Collaboration Features
rad_patch_list: List patches (pull requests) in a repositoryrad_issue_list: List issues in a repositoryrad_remote_list: List remotes/nodes for a repository
Node & Identity
rad_id: Get your Radicle node IDrad_help: Get help for Radicle commands
Prerequisites
-
Radicle CLI: Ensure the
radcommand is installed and available in your PATH# Install Radicle (see https://radicle.xyz for installation instructions) curl -sSf https://install.radicle.xyz | sh -
Deno: For running the GitHub MCP server
# Install Deno curl -fsSL https://deno.land/install.sh | sh -
Python Environment: Python 3.8+ with the MCP library
pip install mcp -
GitHub Personal Access Token: For GitHub integration
- Go to https://github.com/settings/tokens
- Create a new token with repo, issues, and pull request permissions
- Set as environment variable:
GITHUB_PERSONAL_ACCESS_TOKEN
Installation
- Clone this repository
- Install dependencies:
pip install -e . - Install the official GitHub MCP server:
deno install -g --name github-mcp npm:@modelcontextprotocol/server-github - Run the setup script:
python setup_mcp.py
Usage
Quick Setup
# Set your GitHub token
export GITHUB_PERSONAL_ACCESS_TOKEN=your_token_here
# Run the setup script
python setup_mcp.py
GitHub ā Radicle Sync
# Test sync connectivity
python demo_sync.py
# Create a test issue (optional)
python create_test_issue.py
# Run full sync
python github_radicle_sync.py
# Or use CLI interface
python sync_cli.py --repo owner/repo --dry-run
python sync_cli.py --repo owner/repo --issues-only
MCP Integration
The sync functionality is available as MCP tools:
github_sync_test: Test connectivitygithub_sync_issues: Sync issues onlygithub_sync_full: Full bidirectional sync
See SYNC_README.md for detailed sync documentation.
As Standalone Servers
# Radicle MCP Server
python -m radicle_mcp.server
# GitHub MCP Server
github-mcp
With Claude Desktop
The setup script automatically creates the configuration. Your claude_desktop_config.json will include:
{
"mcpServers": {
"radicle-mcp": {
"command": "/path/to/python",
"args": ["-m", "radicle_mcp.server"]
},
"github-mcp": {
"command": "/path/to/github-mcp",
"args": [],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
}
}
}
}
VS Code Integration
This project includes VS Code configuration for debugging the MCP server. Use the provided mcp.json file to connect compatible MCP clients.
Example Commands
Once connected to an MCP client, you can use natural language to interact with both platforms:
Radicle Operations
- "Initialize a new Radicle repository called 'my-project'"
- "Clone the repository with RID rad:z2..."
- "Show me the current patches in this repository"
- "Sync this repository with the network"
- "What's my Radicle node ID?"
GitHub Operations
- "Create a new GitHub repository called 'awesome-project'"
- "List my recent GitHub repositories"
- "Create an issue titled 'Bug fix needed'"
- "Show me open pull requests in my repository"
- "Search for repositories related to 'machine learning'"
Cross-Platform Workflows
- "Publish this Radicle repository to GitHub"
- "Sync issues between Radicle and GitHub"
- "Compare this repository on both platforms"
Development
Running Tests
python -m pytest tests/
Code Style
black src/
flake8 src/
Project Structure
radicle-mcp/
āāā src/radicle_mcp/
ā āāā __init__.py
ā āāā server.py # Main MCP server implementation
āāā .vscode/
ā āāā mcp.json # VS Code MCP configuration
āāā .github/
ā āāā copilot-instructions.md
āāā pyproject.toml # Project configuration
āāā README.md
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
MIT License - see LICENSE file for details
Related Links
Related Servers
GitHub Explorer MCP
Explore GitHub repositories, including file content, directory structure, and other metadata.
Git MCP Server (Go)
An MCP server for interacting with and automating Git repositories using Large Language Models.
GitHub PR & Issue Analyser
Analyze GitHub pull requests and manage issues, tags, and releases.
Star Report
Automatically generates and pushes GitHub repository activity reports (stars, commits, issues) to Feishu groups using AI analysis.
GitKraken
A CLI for interacting with GitKraken APIs. Includes an MCP server via `gk mcp` that not only wraps GitKraken APIs, but also Jira, GitHub, GitLab, and more.
GitHub MCP Server
Integrates with GitHub APIs for advanced automation and interaction, supporting both remote and local deployments.
Better GitLab MCP Server
An improved GitLab MCP server with bug fixes and enhancements for accessing GitLab resources.
GitHub Project Manager with Resource System
A server for GitHub project management with advanced resource management, capacity planning, and workload optimization capabilities.
Gitea MCP Server
Manage Gitea repositories and execute commands directly from your MCP-compatible chat interface.
Github MCP Server
Integrates with GitHub, allowing LLMs to interact with repositories, issues, and pull requests via the GitHub API.