a3a96fe2cc
CI / Check (push) Has been skipped
CI / Detect Changes (push) Successful in 5s
CI / Deploy Agent (push) Successful in 8m13s
CI / Deploy Dashboard (push) Successful in 7m3s
CI / Deploy Docs (push) Has been skipped
CI / Deploy MCP (push) Successful in 1m50s
MCP server validates per-tenant bearer tokens on incoming calls and routes each tool to the caller's tenant DB. Closes the cross-tenant data leak in the MCP path identified in M7.3.
25 lines
767 B
TOML
25 lines
767 B
TOML
[package]
|
|
name = "compliance-mcp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
compliance-core = { workspace = true, features = ["mongodb", "axum"] }
|
|
rmcp = { version = "0.16", features = ["server", "macros", "transport-io", "transport-streamable-http-server"] }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
mongodb = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
dotenvy = "0.15"
|
|
thiserror = { workspace = true }
|
|
chrono = { workspace = true }
|
|
bson = { version = "2", features = ["chrono-0_4"] }
|
|
schemars = "1.0"
|
|
axum = "0.8"
|
|
tower-http = { version = "0.6", features = ["cors"] }
|
|
sha2 = { workspace = true }
|
|
hex = { workspace = true }
|
|
dashmap = { workspace = true }
|