The [official Rust
SDK](57fc428c57)
has come a long way since we first started our mcp client implementation
5 months ago and, today, it is much more complete than our own
stdio-only implementation.
This PR introduces a new config flag `experimental_use_rmcp_client`
which will use a new mcp client powered by the sdk instead of our own.
To keep this PR simple, I've only implemented the same stdio MCP
functionality that we had but will expand on it with future PRs.
---------
Co-authored-by: pakrym-oai <pakrym@openai.com>
6 lines
90 B
Rust
6 lines
90 B
Rust
mod logging_client_handler;
|
|
mod rmcp_client;
|
|
mod utils;
|
|
|
|
pub use rmcp_client::RmcpClient;
|