[package]
name = "github-mcp"
version = "0.1.2"
edition = "2024"
description = "GitHub v3 REST API MCP server, generated by mcpify."
license = "MIT"
repository = "https://github.com/guercheLE/github-mcp-rs"
readme = "README.md"
keywords = ["mcp", "github", "cli", "api"]
categories = ["command-line-utilities", "api-bindings"]
publish = true
exclude = [
"/.github",
"/.mcpify",
"/docs",
"/scripts",
"/Dockerfile",
"/docker-compose.yml",
"/.env.example",
]
[lib]
name = "github_mcp"
path = "src/lib.rs"
[[bin]]
name = "github-mcp"
path = "src/main.rs"
[[bin]]
name = "github-mcp-populate-embeddings"
path = "src/bin/populate_embeddings.rs"
[[bin]]
name = "github-mcp-healthcheck"
path = "src/bin/healthcheck.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
rmcp = { version = "2", features = ["server", "transport-io", "transport-streamable-http-server"] }
axum = "0.8"
reqwest = { version = "0.12", features = ["json", "rustls-tls", "rustls-tls-native-roots"], default-features = false }
rustls = { version = "0.23", default-features = false, features = ["aws_lc_rs"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
clap = { version = "4", features = ["derive"] }
rusqlite = { version = "0.32", features = ["bundled", "load_extension", "backup"] }
sqlite-vec = "0.1"
zstd = "0.13"
jsonschema = "0.46"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
tracing-opentelemetry = "0.33"
opentelemetry = "0.32"
opentelemetry_sdk = "0.32"
opentelemetry-otlp = "0.32"
fastembed = { version = "5", default-features = false, features = ["ort-download-binaries-rustls-tls", "hf-hub-rustls-tls", "image-models"] }
keyring = "4"
rsa = "0.9"
sha1 = { version = "0.10", features = ["oid"] }
sha2 = "0.11"
aes-gcm = "0.10"
oauth2 = "5"
inquire = "0.7"
anyhow = "1"
thiserror = "2"
url = "2"
uuid = { version = "1", features = ["v4"] }
base64 = "0.22"
percent-encoding = "2"
dhat = { version = "0.3", optional = true }
[features]
profiling = ["dep:dhat"]
[dev-dependencies]
tempfile = "3"
rand = "0.8"