We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ervwalter/mcp-kanka'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cli.py•300 B
"""CLI entry point for mcp-kanka."""
import asyncio
from .__main__ import main
def run() -> None:
"""Entry point for the console script."""
try:
asyncio.run(main())
except KeyboardInterrupt:
pass
except Exception as e:
print(f"Error: {e}")
exit(1)