We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cycodehq/cycode-cli'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•316 B
from multiprocessing import freeze_support
from cycode.cli.app import app
# DO NOT REMOVE OR MOVE THIS LINE
# this is required to support multiprocessing in executables files packaged with PyInstaller
# see https://pyinstaller.org/en/latest/common-issues-and-pitfalls.html#multi-processing
freeze_support()
app()