[package]
name = "gitctx"
version = "0.1.0"
edition = "2021"
description = "MCP server for GitHub repository exploration"
license = "MIT"
autobins = false
[lib]
name = "gitctx"
path = "src/lib.rs"
[[bin]]
name = "gitctx-mcp"
path = "src/mcp_main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
octocrab = "0.41"
url = "2"
urlencoding = "2"
base64 = "0.22"
dirs = "5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = "0.4"
anyhow = "1"
open = "5"
reqwest = { version = "0.12", features = ["json"] }
once_cell = "1"
rmcp = { version = "0.12", features = ["server", "macros", "transport-io"] }
schemars = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }