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

NameTypeRequiredDescription
project_typestringyesgithub | gitlab | bitbucket
project_keystringyese.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

FieldTypeDescription
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.

Regenerated from source · build July 6, 2026