deps.dev
live DeveloperPackagesGoogle's package metadata + dependency graph API. Keyless.
5 tools
0ms auth
free tier 50 calls/day
Tools
project
required: project_type, project_key Project metadata.
Parameters
Name Type Description
project_type req string — project_key req string — Try it
Response
package
required: system_, name Package metadata.
Parameters
Name Type Description
system_ req string — name req string — Try it
Response
version
required: system_, name, version Single version.
Parameters
Name Type Description
system_ req string — name req string — version req string — Try it
Response
dependencies
required: system_, name, version Resolved dep graph.
Parameters
Name Type Description
system_ req string — name req string — version req string — Try it
Response
query
required: query Query packages/versions.
Parameters
Name Type Description
query req object — Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/deps-dev/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/deps-dev/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"project","arguments":{"project_type": "example", "project_key": "example"}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("project", {"project_type":"example","project_key":"example"}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("google's package metadata + dependency graph api"); Related packs
Other Pipeworx packs in the same categories (Developer, Packages):