We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/stalcup-dev/tl-dps-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
dpscoach_entry.py•518 B
"""PyInstaller entrypoint that dispatches to the PySide6 app or smoke test."""
from __future__ import annotations
import sys
from runpy import run_module
from server import run_smoke_packaged
def main() -> None:
if "--smoke" in sys.argv:
filtered_args = [arg for arg in sys.argv if arg != "--smoke"]
sys.argv[:] = filtered_args or [sys.argv[0]]
code = run_smoke_packaged()
sys.exit(code)
run_module("app.main", run_name="__main__")
if __name__ == "__main__":
main()