initial commit

Signed-off-by: Sienna Meridian Satterwhite <sienna@r3t.io>
This commit is contained in:
2026-03-06 22:43:25 +00:00
commit 6a6a2ade32
102 changed files with 9556 additions and 0 deletions

41
Cargo.toml Normal file
View File

@@ -0,0 +1,41 @@
[package]
name = "mcp-server"
version = "0.1.0"
edition = "2021"
[dependencies]
# Async runtime
tokio = { version = "1.0", features = ["full"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# SQLite for semantic storage
rusqlite = { version = "0.32", features = ["bundled"] }
# Time handling
chrono = "0.4"
# Utilities
once_cell = "1.18"
# UUID generation
uuid = { version = "1.0", features = ["v4"] }
# Local embeddings
fastembed = "5.11.0"
# Error handling
thiserror = "1.0"
# HTTP server
actix-web = "4"
# OIDC JWT verification
jsonwebtoken = "9"
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
[dev-dependencies]
serde_json = "1.0"
tempfile = "3.0"