maintainer

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

Maintainer summary by canonical maintainer id (often email).

Parameters

NameTypeRequiredDescription
maintainerstringyes

Example call

Arguments

{
  "maintainer": "[email protected]"
}

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":"maintainer","arguments":{"maintainer":"[email protected]"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('maintainer', {
  "maintainer": "[email protected]"
});

More examples

{
  "maintainer": "[email protected]"
}

Response shape

FieldTypeDescription
namestringMaintainer name or email
packages_countnumberTotal number of packages maintained
projectsarrayList of projects maintained by this maintainer
Full JSON Schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Maintainer name or email"
    },
    "packages_count": {
      "type": "number",
      "description": "Total number of packages maintained"
    },
    "projects": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Project name"
          },
          "repos": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "List of repositories where maintained"
          }
        }
      },
      "description": "List of projects maintained by this maintainer"
    }
  },
  "description": "Maintainer summary and their projects"
}

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