maintainer
Pack: repology · Endpoint: https://gateway.pipeworx.io/repology/mcp
Maintainer summary by canonical maintainer id (often email).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
maintainer | string | yes |
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
| Field | Type | Description |
|---|---|---|
name | string | Maintainer name or email |
packages_count | number | Total number of packages maintained |
projects | array | List 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.