project

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

All packages (per-repo) for one project name (e.g. “firefox”).

Parameters

NameTypeRequiredDescription
namestringyes

Example call

Arguments

{
  "name": "firefox"
}

curl

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

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('project', {
  "name": "firefox"
});

More examples

{
  "name": "curl"
}

Response shape

Always returns: items, count

FieldTypeDescription
itemsarrayArray of packages per repository for the project
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "repo": {
            "type": "string",
            "description": "Repository name"
          },
          "name": {
            "type": "string",
            "description": "Project name"
          },
          "version": {
            "type": "string",
            "description": "Package version"
          },
          "status": {
            "type": "string",
            "description": "Package status (e.g. 'newest', 'outdated')"
          },
          "maintainers": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "List of maintainers"
          },
          "licenses": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "List of licenses"
          },
          "homepage": {
            "type": "string",
            "description": "Project homepage URL"
          },
          "downloads": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Download URLs"
          }
        }
      },
      "description": "Array of packages per repository for the project"
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026