We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/grabba-dev/grabba-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cli.py•271 B
from .server import main # Import your async main function from server.py
def run_cli():
"""
Synchronous wrapper to run the async main function.
This is the function Poetry's entry point will call.
"""
main()
if __name__ == "__main__":
run_cli()