search_projects
Pack: pride · Endpoint: https://gateway.pipeworx.io/pride/mcp
Search EBI PRIDE Archive — the largest public proteomics/mass-spectrometry dataset repository — for projects by keyword (disease, organism, technique, protein, instrument). Returns matching project accessions with title, organisms, diseases, and instruments. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
keyword | string | yes | Free-text search term, e.g. “breast cancer”, “SARS-CoV-2”, “TMT”. |
limit | number | no | Max results per page (default 20, max 100). |
page | number | no | Zero-based page index (default 0). |
Example call
Arguments
{
"keyword": "breast cancer"
}
curl
curl -X POST https://gateway.pipeworx.io/pride/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_projects","arguments":{"keyword":"breast cancer"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_projects', {
"keyword": "breast cancer"
});
More examples
{
"keyword": "SARS-CoV-2",
"limit": 50,
"page": 0
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pride": {
"url": "https://gateway.pipeworx.io/pride/mcp"
}
}
}
See Getting Started for client-specific install steps.