configure basic MCP server

This commit is contained in:
geoffsee
2025-06-04 22:33:37 -04:00
committed by Geoff Seemueller
parent dbc8d78fb5
commit 06a233633e
10 changed files with 921 additions and 50 deletions

View File

@@ -10,7 +10,7 @@ name = "agent-server"
path = "src/main.rs"
[dependencies]
axum = { version = "0.7", features = ["multipart"] }
axum = { version = "0.8", features = ["multipart"] }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
@@ -30,4 +30,5 @@ sled = "0.34.7"
tower-http = { version = "0.6.2", features = ["trace", "cors"] }
anyhow = "1.0.97"
base64 = "0.22.1"
fips204 = "0.4.6"
fips204 = "0.4.6"
rmcp = { git = "https://github.com/modelcontextprotocol/rust-sdk", branch = "main", features = ["server", "transport-streamable-http-server", "transport-sse-server", "transport-io",] }