get_repositories
Pack: paperswithcode · Endpoint: https://gateway.pipeworx.io/paperswithcode/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_repositories for the schema, then POST the same URL with its arguments for the data.
Find IMPLEMENTATIONS of a paper (by arXiv id): the linked GitHub repository plus the most popular Hugging Face models, demo Spaces, and datasets that implement or reproduce it — the “papers with code” view. Use for “code/implementation for
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
arxiv_id | string | yes | arXiv identifier (e.g. “2312.00752”). |
Example call
Arguments
{
"arxiv_id": "2312.00752"
}
curl
curl -X POST https://gateway.pipeworx.io/paperswithcode/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_repositories","arguments":{"arxiv_id":"2312.00752"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_repositories', {
"arxiv_id": "2312.00752"
});
Response shape
| Field | Type | Description |
|---|---|---|
arxiv_id | string | |
title | string | |
github_repo | string | |
counts | object | |
top_models | array | |
demo_spaces | array | |
datasets | array |
Full JSON Schema
{
"type": "object",
"properties": {
"arxiv_id": {
"type": "string"
},
"title": {
"type": "string"
},
"github_repo": {
"type": "string"
},
"counts": {
"type": "object",
"properties": {
"models": {
"type": "number"
},
"spaces": {
"type": "number"
},
"datasets": {
"type": "number"
}
}
},
"top_models": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"downloads": {
"type": "number"
},
"likes": {
"type": "number"
},
"task": {
"type": [
"string",
"null"
]
},
"url": {
"type": "string"
}
}
}
},
"demo_spaces": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"likes": {
"type": "null"
},
"url": {
"type": "string"
}
}
}
},
"datasets": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"downloads": {
"type": "number"
},
"url": {
"type": "string"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"paperswithcode": {
"url": "https://gateway.pipeworx.io/paperswithcode/mcp"
}
}
}
See Getting Started for client-specific install steps.