Skip to main content
Glama

Terminal Control MCP

by taskhub-sh
Apache 2.0
1
  • Linux
main.py544 B
#!/usr/bin/env python3 """Main entry point for Terminal Control MCP Server""" import os from terminal_control_mcp.logging_config import setup_logging from terminal_control_mcp.server import mcp def main(): """Main entry point""" # Setup logging log_level = os.getenv("LOG_LEVEL", "INFO") log_file = os.getenv("LOG_FILE") # Optional log file path setup_logging( level=log_level, log_file=log_file, enable_console=True ) mcp.run() if __name__ == "__main__": main()

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/taskhub-sh/terminal-driver-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server