We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alejoair/mcp-terminal'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•416 B
"""
MCP Terminal - Interactive terminal sessions via MCP protocol.
A Model Context Protocol (MCP) server that provides cross-platform
terminal sessions with PTY support for Windows, Linux, and macOS.
"""
__version__ = "0.1.0"
__author__ = "Your Name"
__email__ = "your.email@example.com"
from .core.terminal import TerminalManager, TerminalSession
__all__ = ["TerminalManager", "TerminalSession", "__version__"]