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
cli.py•266 B
#!/usr/bin/env python3
"""CLI entry point for the GDB MCP server."""
import asyncio
from .server import main as async_main
def main():
"""Synchronous wrapper for the async main function."""
asyncio.run(async_main())
if __name__ == "__main__":
main()