We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TiM00R/remote-terminal'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•615 B
"""
Entry point for remote-terminal-mcp command
This wraps the async main() function to be callable from setuptools entry_points
"""
import asyncio
import sys
def main():
"""Synchronous entry point that calls async main"""
# Import here to avoid import issues
from src.mcp_server import main as async_main
try:
asyncio.run(async_main())
except KeyboardInterrupt:
print("\nShutting down gracefully...", file=sys.stderr)
sys.exit(0)
except Exception as e:
print(f"Error: {e}", file=sys.stderr)
sys.exit(1)
if __name__ == "__main__":
main()