Init initializes the proxier, establishing a connection with the upstream server and fetching resources.
(context.Context)
| 11 | type ServerProxier interface { |
| 12 | // Init initializes the proxier, establishing a connection with the upstream server and fetching resources. |
| 13 | Init(context.Context) error |
| 14 | // Gracefully shut down connections to the MCP server. Session management will vary per transport. |
| 15 | // See https://modelcontextprotocol.io/specification/2025-06-18/basic/transports#session-management. |
| 16 | Shutdown(ctx context.Context) error |
no outgoing calls