We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/frap129/lorekeeper-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•306 B
"""Main entry point for running the MCP server or CLI."""
import sys
# Check if CLI mode is requested (any CLI arguments)
if len(sys.argv) > 1:
# Run CLI
from lorekeeper_mcp.cli import main
main()
else:
# Run MCP server (default)
from lorekeeper_mcp.server import mcp
mcp.run()