get_study

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

Fetch metadata for a single MetaboLights study by its accession (e.g. “MTBLS1”): title, full description, and the organisms studied (species + tissue/part). Keyless.

Parameters

NameTypeRequiredDescription
idstringyesMetaboLights accession, e.g. “MTBLS1”.

Example call

Arguments

{
  "id": "MTBLS1"
}

curl

curl -X POST https://gateway.pipeworx.io/metabolights/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_study","arguments":{"id":"MTBLS1"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_study', {
  "id": "MTBLS1"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "metabolights": {
      "url": "https://gateway.pipeworx.io/metabolights/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026