| 57 | |
| 58 | /** A live connection to a single MCP server. */ |
| 59 | export interface McpConnection { |
| 60 | client: Client |
| 61 | tools: McpTool[] |
| 62 | /** Close the transport and free the child process / socket. */ |
| 63 | close: () => Promise<void> |
| 64 | } |
| 65 | |
| 66 | const CONNECT_TIMEOUT_MS = 30_000 |
| 67 | const CLIENT_INFO = { name: "orbcode", version: VERSION } |
nothing calls this directly
no outgoing calls
no test coverage detected