sequence

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

“DNA / cDNA / CDS / protein sequence of [gene]” / “FASTA for [Ensembl ID]” / “get sequence of [transcript]” — sequence by Ensembl stable ID. Type defaults to “genomic”; pass “cdna”, “cds”, or “protein” for processed forms. Use for sequence retrieval in primer design, variant analysis, or downstream sequence tools.

Parameters

NameTypeRequiredDescription
idstringyes
typestringnogenomic (default) | cdna | cds | protein

Example call

Arguments

{
  "id": "ENSG00000157764"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "id": "ENST00000288602",
  "type": "cdna"
}

Response shape

FieldTypeDescription
seqstringDNA or protein sequence
idstringStable ID
query_typestringQuery type (genomic/cdna/cds/protein)
molecule_typestringMolecule type
Full JSON Schema
{
  "type": "object",
  "description": "Sequence data for a stable ID",
  "properties": {
    "seq": {
      "type": "string",
      "description": "DNA or protein sequence"
    },
    "id": {
      "type": "string",
      "description": "Stable ID"
    },
    "query_type": {
      "type": "string",
      "description": "Query type (genomic/cdna/cds/protein)"
    },
    "molecule_type": {
      "type": "string",
      "description": "Molecule type"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026