get_crate_dependencies

Pack: crates · Endpoint: https://gateway.pipeworx.io/crates/mcp

List the dependencies of a specific crate version — what itself depends on. Returns each dependency with its version requirement, kind (normal/build/dev), optional flag, enabled features, and target. Version is optional (defaults to the latest stable). Use for “what does depend on”, dependency audits, or sizing a crate’s footprint.

Parameters

NameTypeRequiredDescription
namestringyesCrate name (e.g. “tokio”).
versionstringnoExact version (e.g. “1.40.0”), or omit for the latest stable.

Example call

curl -X POST https://gateway.pipeworx.io/crates/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_crate_dependencies","arguments":{}}}'

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "crates": {
      "url": "https://gateway.pipeworx.io/crates/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build June 24, 2026