[package]
edition = "2024"
name = "grepdown-mcp"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server for grepdown: exposes Markdown knowledge base search, traversal, and linting to AI agents over stdio"
readme = "README.md"
keywords = [
"markdown",
"search",
"knowledge-base",
"fts5",
"sqlite",
]
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/Hanziness/grepdown"
[[bin]]
name = "grepdown-mcp"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.clap]
version = "4.6.2"
features = ["derive"]
[dependencies.grepdown-lib]
version = "0.1"
[dependencies.notify]
version = "6.1"
[dependencies.rmcp]
version = "2.2.0"
features = ["server"]
[dependencies.schemars]
version = "1.2.1"
[dependencies.serde]
version = "1.0.229"
[dependencies.serde_json]
version = "1.0.150"
[dependencies.tokio]
version = "1.53.1"
features = [
"io-std",
"sync",
]
[dev-dependencies.rmcp]
version = "2.2.0"
features = [
"server",
"client",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.53.1"
features = [
"io-std",
"macros",
"rt-multi-thread",
]