Remove now unused mcp-server crate (#4773)

This commit is contained in:
Alex Hancock
2025-09-24 10:36:09 -04:00
committed by GitHub
parent b051d11115
commit 7a704f86d0
12 changed files with 0 additions and 1128 deletions
-1
View File
@@ -14,7 +14,6 @@ workspace = true
goose = { path = "../goose" }
mcp-core = { path = "../mcp-core" }
goose-mcp = { path = "../goose-mcp" }
mcp-server = { path = "../mcp-server" }
rmcp = { workspace = true }
schemars = "1.0"
axum = { version = "0.8.1", features = ["ws", "macros"] }
-2
View File
@@ -57,8 +57,6 @@ pub fn setup_logging(name: Option<&str>) -> Result<()> {
let env_filter = EnvFilter::try_from_default_env().unwrap_or_else(|_| {
// Set default levels for different modules
EnvFilter::new("")
// Set mcp-server module to DEBUG
.add_directive("mcp_server=debug".parse().unwrap())
// Set mcp-client to DEBUG
.add_directive("mcp_client=debug".parse().unwrap())
// Set goose module to DEBUG