We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/detailobsessed/unblu-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•353 B
"""Entry-point module, in case you use `python -m unblu_mcp`.
Why does this file exist, and why `__main__`? For more info, read:
- https://www.python.org/dev/peps/pep-0338/
- https://docs.python.org/3/using/cmdline.html#cmdoption-m
"""
import sys
from unblu_mcp._internal.cli import main
if __name__ == "__main__":
sys.exit(main(sys.argv[1:]))