renso-code-graph-mcp 1.0.11

MCP stdio server exposing code_graph tools. Installs the prebuilt `code_graph-mcp` binary from GitHub Releases.
[package]
# crates.io package name (companion to renso-code-graph). The installed
# binary is still `code_graph-mcp` (see [[bin]] below).
name = "renso-code-graph-mcp"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
description = "MCP stdio server exposing code_graph tools. Installs the prebuilt `code_graph-mcp` binary from GitHub Releases."
homepage = "https://cg.renso.ai"
documentation = "https://cg.renso.ai/docs#mcp"
readme = "README.md"
# crates.io rejects keywords >= 20 chars, so "model-context-protocol" (22)
# is shortened to "model-context".
keywords = ["code-graph", "mcp", "model-context", "llm", "stdio"]
categories = ["development-tools", "command-line-utilities"]
publish = true
build = "build.rs"

# Restrict the published .crate file to the stub trampoline. Engine
# source MUST never reach crates.io.
include = ["src/**/*", "build.rs", "Cargo.toml", "README.md"]

[[bin]]
name = "code_graph-mcp"
path = "src/main.rs"

[build-dependencies]
ureq = { version = "2", default-features = false, features = ["tls"] }
sha2 = "0.10"
hex = "0.4"
flate2 = "1"
tar = "0.4"
zip = { version = "2", default-features = false, features = ["deflate"] }

[package.metadata.binstall]
pkg-url = "https://github.com/Renso-AI/code-graph-dist/releases/download/v{ version }/code_graph-mcp-{ target }.tar.gz"
pkg-fmt = "tgz"
bin-dir = "{ bin }{ binary-ext }"

[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "https://github.com/Renso-AI/code-graph-dist/releases/download/v{ version }/code_graph-mcp-{ target }.zip"
pkg-fmt = "zip"