project
Pack: deps-dev · Endpoint: https://gateway.pipeworx.io/deps-dev/mcp
Fetch deps.dev project metadata for a GitHub, GitLab, or Bitbucket repository (e.g. project_key=“facebook/react”), returning scorecard scores, version count, and linked package references.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
project_type | string | yes | github | gitlab | bitbucket |
project_key | string | yes | e.g. “facebook/react” |
Example call
Arguments
{
"project_type": "github",
"project_key": "facebook/react"
}
curl
curl -X POST https://gateway.pipeworx.io/deps-dev/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"project","arguments":{"project_type":"github","project_key":"facebook/react"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('project', {
"project_type": "github",
"project_key": "facebook/react"
});
More examples
{
"project_type": "gitlab",
"project_key": "gitlab-org/gitlab"
}
Response shape
| Field | Type | Description |
|---|
Full JSON Schema
{
"type": "object",
"description": "Project metadata from deps.dev API",
"properties": {}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"deps-dev": {
"url": "https://gateway.pipeworx.io/deps-dev/mcp"
}
}
}
See Getting Started for client-specific install steps.