We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hnmr293/gdb-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_server.py•309 B
#!/usr/bin/env python3
"""Quick test script to run the GDB 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.parent / "src"))
from gdb_mcp.server import main
if __name__ == "__main__":
asyncio.run(main())