We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mattsq/ems-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•273 B
"""Entry point for running the EMS MCP server.
This module allows running the server with:
python -m ems_mcp
"""
from ems_mcp.server import run
def main() -> None:
"""Main entry point for the EMS MCP server."""
run()
if __name__ == "__main__":
main()