rust-crate-src-mcp 0.1.1

An MCP server for pulling the source of crate dependencies.
Documentation
1
2
3
4
5
6
7
8
FROM rust:1.92-slim AS builder
WORKDIR /app
COPY . .
RUN cargo build --release --bin rust-crate-src-mcp

FROM scratch
COPY --from=builder /app/target/release/rust-crate-src-mcp /rust-crate-src-mcp
ENTRYPOINT ["/rust-crate-src-mcp"]