biomodels_files
Pack: biomodels · Endpoint: https://gateway.pipeworx.io/biomodels/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/biomodels_files for the schema, then POST the same URL with its arguments for the data.
List every file attached to a BioModels entry — the primary SBML/CellML model plus auto-generated conversions (BioPAX levels 2 and 3, SBML-to-Octave/MATLAB, VCML, SciLab) and any supplementary figures or scripts the submitter added — with MIME type, byte size, MD5/SHA-256 checksums and a direct download URL for each. This is the step between finding a model and actually loading it into a simulator.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
model_id | string | yes | BioModels id, e.g. BIOMD0000000012. |
Example call
Arguments
{
"model_id": "BIOMD0000000012"
}
curl
curl -X POST https://gateway.pipeworx.io/biomodels/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"biomodels_files","arguments":{"model_id":"BIOMD0000000012"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('biomodels_files', {
"model_id": "BIOMD0000000012"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"biomodels": {
"url": "https://gateway.pipeworx.io/biomodels/mcp"
}
}
}
See Getting Started for client-specific install steps.