Skip to main content
Glama

Radicle + GitHub MCP Server

by fovi-llc
test_server.pyโ€ข931 B
#!/usr/bin/env python3 """Test script for Radicle MCP Server.""" import asyncio import sys from pathlib import Path # Add the src directory to the path sys.path.insert(0, str(Path(__file__).parent / "src")) from radicle_mcp.server import rad_help async def test_server(): """Simple test to verify the server tools work.""" print("๐Ÿงช Testing Radicle MCP Server...") # Test the help function try: help_result = await rad_help() print("โœ… Help command test passed") print(f"๐Ÿ“– Result preview: {help_result[:100]}...") return True except Exception as e: print(f"โŒ Help command test failed: {e}") return False if __name__ == "__main__": success = asyncio.run(test_server()) if success: print("๐ŸŽ‰ Radicle MCP Server is ready!") else: print("โš ๏ธ Server tests failed - check Radicle installation") sys.exit(1)

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