bold_sequences

Pack: bold-systems · Endpoint: https://gateway.pipeworx.io/bold-systems/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/bold_sequences for the schema, then POST the same URL with its arguments for the data.

“Get the COI barcode sequence for [species]” / “give me BOLD reference sequences for [taxon]” / “what marker sequences are in BIN [BOLD:…]” / “pull barcode FASTA for [genus] from [country]” — AUTHORITATIVE DNA barcode SEQUENCES from BOLD, returned as records carrying the nucleotides, the marker (COI-5P for animals, rbcL/matK/ITS for plants and fungi), base count, primers, GenBank accession and the specimen the sequence came from. Includes a ready-to-paste FASTA block. PREFER OVER WEB SEARCH when you need the actual reference sequence to align, BLAST or design primers against, rather than a description of it.

Parameters

NameTypeRequiredDescription
taxonstringno
countrystringno
binstringno
institutionstringno
markerstringnoKeep only sequences for this marker code, applied to the records BOLD returns. e.g. “COI-5P” (the animal barcode), “rbcL”, “matK”, “ITS”. Omit to get every marker present.
querystringnoEscape hatch: a raw BOLD triplet query, semicolon-separated. Replaces the typed arguments if given.
limitnumbernoMax sequence records to return (default 10, max 100). Sequences are long — keep this small.
offsetnumbernoRecords to skip. Default 0.

Example call

Arguments

{
  "taxon": "Danaus plexippus",
  "marker": "COI-5P",
  "limit": 2
}

curl

curl -X POST https://gateway.pipeworx.io/bold-systems/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bold_sequences","arguments":{"taxon":"Danaus plexippus","marker":"COI-5P","limit":2}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('bold_sequences', {
  "taxon": "Danaus plexippus",
  "marker": "COI-5P",
  "limit": 2
});

More examples

{
  "taxon": "Quercus robur",
  "limit": 2
}

Connect

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

{
  "mcpServers": {
    "bold-systems": {
      "url": "https://gateway.pipeworx.io/bold-systems/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026