We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/WhiskeyHouse/ignition-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•350 B
"""Main entry point for Ignition MCP server (module invocation)."""
import os
import sys
# Ensure the project root is importable so mcp_server.py can find src/
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", ".."))
def main() -> None:
from mcp_server import main as _main
_main()
if __name__ == "__main__":
main()