probe_connect
Opens a connection to an MCP target server via stdio or HTTP, returning connection ID, server name, version, capabilities, and counts.
Instructions
Open a connection to an MCP target server (stdio or HTTP) and return a connectionId plus the server's name, version, capabilities, and counts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| env | No | stdio: extra environment variables layered on top of the parent process env. | |
| url | No | http: URL of the target MCP server. Required when transport='http'. | |
| args | No | stdio: arguments passed to the spawned process. | |
| command | No | stdio: executable to spawn (e.g. 'node'). Required when transport='stdio'. | |
| transport | Yes | Transport to use. 'stdio' spawns a child process; 'http' speaks the streamable HTTP transport. |