Wraps Google's deps.dev API, giving you package metadata and dependency graphs across npm, PyPI, Maven, Go, and other ecosystems. You get five core operations: look up project info from GitHub/GitLab/Bitbucket repos, fetch package metadata, drill into specific versions with their dependencies and security advisories, resolve full dependency trees, and query by hash or repo URL. Hosted through Pipeworx's gateway at gateway.pipeworx.io, so no local setup. Useful when you're auditing dependencies, investigating vulnerabilities, or mapping out what a package actually pulls in at runtime. Also supports plain English queries through ask_pipeworx instead of raw tool calls.
deps.dev MCP — Google's package metadata + dependency graph API.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
project | Project metadata (github |
package | Package metadata. |
version | Single version of a package (deps, advisories, license). |
dependencies | Resolved dependency graph for a (system, name, version). |
query | Query packages/versions (by hash, repo URL, etc). |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"deps-dev": {
"url": "https://gateway.pipeworx.io/deps-dev/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Deps Dev data" })
The gateway picks the right tool and fills the arguments automatically.
MIT