We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/teknologika/Deckbuilder'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cli.py•527 B
#!/usr/bin/env python3
"""
Backward compatibility wrapper for CLI functionality.
This file maintains compatibility with existing tests and scripts that expect
cli.py in the root directory after the reorganization moved CLI to cli/main.py.
"""
import sys
from pathlib import Path
# Add the parent directory to the Python path to allow imports
sys.path.insert(0, str(Path(__file__).parent.parent))
# Import the main CLI functionality
from deckbuilder.cli.main import main # noqa: E402
if __name__ == "__main__":
main()