mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-17 14:14:26 +01:00
59 lines
1.8 KiB
Rust
59 lines
1.8 KiB
Rust
use std::collections::HashMap;
|
|
|
|
use anyhow::Result;
|
|
use mcp_client::{
|
|
ClientCapabilities, ClientInfo, Error as ClientError, McpClient, McpClientTrait,
|
|
StdioTransport, Transport,
|
|
};
|
|
use std::time::Duration;
|
|
use tracing_subscriber::EnvFilter;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), ClientError> {
|
|
// Initialize logging
|
|
tracing_subscriber::fmt()
|
|
.with_env_filter(
|
|
EnvFilter::from_default_env()
|
|
.add_directive("mcp_client=debug".parse().unwrap())
|
|
.add_directive("eventsource_client=debug".parse().unwrap()),
|
|
)
|
|
.init();
|
|
|
|
// 1) Create the transport
|
|
let transport = StdioTransport::new("uvx", vec!["mcp-server-git".to_string()], HashMap::new());
|
|
|
|
// 2) Start the transport to get a handle
|
|
let transport_handle = transport.start().await?;
|
|
|
|
// 3) Create the client with the middleware-wrapped service
|
|
let mut client = McpClient::connect(transport_handle, Duration::from_secs(10)).await?;
|
|
|
|
// Initialize
|
|
let server_info = client
|
|
.initialize(
|
|
ClientInfo {
|
|
name: "test-client".into(),
|
|
version: "1.0.0".into(),
|
|
},
|
|
ClientCapabilities::default(),
|
|
)
|
|
.await?;
|
|
println!("Connected to server: {server_info:?}\n");
|
|
|
|
// List tools
|
|
let tools = client.list_tools(None).await?;
|
|
println!("Available tools: {tools:?}\n");
|
|
|
|
// Call tool 'git_status' with arguments = {"repo_path": "."}
|
|
let tool_result = client
|
|
.call_tool("git_status", serde_json::json!({ "repo_path": "." }))
|
|
.await?;
|
|
println!("Tool result: {tool_result:?}\n");
|
|
|
|
// List resources
|
|
let resources = client.list_resources(None).await?;
|
|
println!("Available resources: {resources:?}\n");
|
|
|
|
Ok(())
|
|
}
|