We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shiharuharu/cli-agent-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•349 B
"""Runtime module for subprocess management and event streaming.
This module provides isolated process execution with proper signal handling
and reliable termination for CLI subprocess management.
"""
from __future__ import annotations
from .process_runner import ProcessRunner, ProcessSpec
__all__ = [
"ProcessRunner",
"ProcessSpec",
]