agentic 0.0.4

Support library for building Agentic MCP and Agent2Agent based systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// NOTE: HttpTransport is not fully implemented yet.
///       Not to be used (use StdioTransport for now)
pub struct ClientHttpTransportConfig {
	pub url: String,
}

impl ClientHttpTransportConfig {
	pub fn new(url: impl Into<String>) -> Self {
		Self { url: url.into() }
	}
}