2026-03-23 18:31:11 +01:00
|
|
|
[package]
|
2026-04-11 00:10:38 -04:00
|
|
|
name = "noxa-mcp"
|
|
|
|
|
description = "MCP server for noxa web extraction toolkit"
|
2026-03-23 18:31:11 +01:00
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
2026-04-11 00:10:38 -04:00
|
|
|
name = "noxa-mcp"
|
2026-03-23 18:31:11 +01:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-04-11 00:10:38 -04:00
|
|
|
noxa-core = { workspace = true }
|
|
|
|
|
noxa-fetch = { workspace = true }
|
|
|
|
|
noxa-llm = { workspace = true }
|
|
|
|
|
noxa-pdf = { workspace = true }
|
2026-03-23 18:31:11 +01:00
|
|
|
rmcp = { version = "1.2", features = ["server", "macros", "transport-io", "schemars"] }
|
|
|
|
|
schemars = "1.0"
|
|
|
|
|
dotenvy = { workspace = true }
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
2026-03-24 17:25:05 +01:00
|
|
|
url = "2"
|
2026-04-03 16:05:45 +02:00
|
|
|
dirs = "6.0.0"
|