skills/43-wentorai-research-plugins/skills/domains/biomedical/biothings-api/SKILL.md
Query gene, variant, and drug annotations via BioThings APIs
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research biothings-apiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
BioThings is a family of high-performance biomedical annotation APIs developed at the Scripps Research Institute. The suite provides unified, up-to-date access to gene, variant, and chemical/drug annotations aggregated from dozens of authoritative sources. Three primary services cover the core entities in translational research:
All three share identical query syntax, require no authentication, and return JSON. Free for academic and commercial use.
No authentication or API keys are required. All endpoints are open-access.
# No API key needed — just query directly
curl "https://mygene.info/v3/query?q=BRCA1&size=1"
GET https://mygene.info/v3/query?q={query}&size={n}
Query by gene symbol, name, Entrez ID, Ensembl ID, or keyword. Supports boolean operators (AND, OR, NOT) and field-specific queries like symbol:CDK2.
curl -s "https://mygene.info/v3/query?q=BRCA1&size=1"
Response:
{
"took": 178,
"total": 13223,
"hits": [
{
"_id": "672",
"_score": 145.6796,
"entrezgene": "672",
"name": "BRCA1 DNA repair associated",
"symbol": "BRCA1",
"taxid": 9606
}
]
}
GET https://mygene.info/v3/gene/{entrez_id}
Returns comprehensive annotations for a single gene. Use the fields parameter to select specific data sources.
# Full annotation (large response)
curl -s "https://mygene.info/v3/gene/1017"
# Selective fields
curl -s "https://mygene.info/v3/gene/1017?fields=symbol,name,summary,genomic_pos,go"
Response (key fields for CDK2, Entrez ID 1017):
{
"_id": "1017",
"symbol": "CDK2",
"name": "cyclin dependent kinase 2",
"HGNC": "1771",
"MIM": "116953",
"AllianceGenome": "1771",
"taxid": 9606,
"type_of_gene": "protein-coding"
}
The full response includes accessions, Gene Ontology terms, pathway memberships (KEGG, Reactome, WikiPathways), protein domains (InterPro, Pfam), homology data, and genomic coordinates.
GET https://myvariant.info/v1/query?q={query}&size={n}
Query by rsID, HGVS notation (e.g., chr7:g.140453136A>T), gene symbol, or ClinVar significance. Returns aggregated annotations from 15+ sources.
curl -s "https://myvariant.info/v1/query?q=rs58991260&size=1"
Response (truncated):
{
"took": 20,
"total": 1,
"hits": [
{
"_id": "chr1:g.218631822G>A",
"_score": 21.382616,
"dbsnp": {
"rsid": "rs58991260",
"vartype": "snv",
"ref": "G",
"alt": "A",
"chrom": "1"
},
"cadd": {
"phred": 1.679,
"consequence": "INTERGENIC",
"chrom": 1,
"pos": 218631822
},
"gnomad_genome": {
"af": { "af": 0.0150338, "af_afr": 0.0528007, "af_eas": 0.0, "af_nfe": 0.00032417 },
"alt": "A",
"ref": "G"
}
}
]
}
GET https://myvariant.info/v1/variant/{hgvs_id}
curl -s "https://myvariant.info/v1/variant/chr1:g.218631822G>A?fields=dbsnp,cadd,clinvar"
GET https://mychem.info/v1/query?q={query}&size={n}
Query by drug name, NDC code, InChIKey, or active ingredient. Aggregates data from FDA NDC, DrugBank, ChEMBL, PubChem, SIDER, and more.
curl -s "https://mychem.info/v1/query?q=aspirin&size=1"
Response (truncated):
{
"took": 82,
"total": 248,
"hits": [
{
"_id": "0615-8613",
"_score": 13.657401,
"ndc": {
"substancename": "ASPIRIN",
"nonproprietaryname": "Aspirin",
"proprietaryname": "Adult Low Dose Aspirin",
"active_numerator_strength": "81",
"active_ingred_unit": "mg/1",
"dosageformname": "TABLET, DELAYED RELEASE",
"routename": "ORAL",
"producttypename": "HUMAN OTC DRUG",
"pharm_classes": [
"Cyclooxygenase Inhibitors [MoA]",
"Decreased Platelet Aggregation [PE]",
"Anti-Inflammatory Agents, Non-Steroidal [CS]",
"Nonsteroidal Anti-inflammatory Drug [EPC]",
"Platelet Aggregation Inhibitor [EPC]"
]
}
}
]
}
GET https://mychem.info/v1/chem/{id}
curl -s "https://mychem.info/v1/chem/CHEMBL25?fields=drugbank,chembl,pubchem"
All BioThings APIs share the same query engine. Key features:
| Feature | Syntax | Example |
|---------|--------|---------|
| Field-specific | field:value | symbol:TP53 |
| Boolean | AND, OR, NOT | BRCA1 AND cancer |
| Wildcard | * | CDK* |
| Range | [min TO max] | exac.af:[0.01 TO 0.05] |
| Pagination | size, from | size=20&from=40 |
| Field selection | fields | fields=symbol,name,go |
| Sorting | sort | sort=_score:desc |
| Batch POST | POST with ids | Up to 1000 IDs per request |
import requests, time
MYGENE = "https://mygene.info/v3"
MYVARIANT = "https://myvariant.info/v1"
MYCHEM = "https://mychem.info/v1"
def search_gene(symbol):
resp = requests.get(f"{MYGENE}/query",
params={"q": f"symbol:{symbol}", "size": 1, "species": "human"})
resp.raise_for_status()
hits = resp.json().get("hits", [])
return hits[0] if hits else {}
def search_variants(gene_symbol, size=5):
resp = requests.get(f"{MYVARIANT}/query",
params={"q": f"clinvar.gene.symbol:{gene_symbol}",
"fields": "dbsnp.rsid,clinvar.rcv.clinical_significance,cadd.phred",
"size": size})
resp.raise_for_status()
return resp.json().get("hits", [])
def search_drug(name):
resp = requests.get(f"{MYCHEM}/query",
params={"q": name, "size": 1,
"fields": "ndc.substancename,ndc.pharm_classes"})
resp.raise_for_status()
hits = resp.json().get("hits", [])
return hits[0] if hits else {}
# Translational research pipeline: gene -> variants -> drug
gene = search_gene("BRCA1")
print(f"Gene: {gene.get('symbol')} (Entrez: {gene.get('entrezgene')})")
time.sleep(0.35)
variants = search_variants("BRCA1", size=3)
for v in variants:
rsid = v.get("dbsnp", {}).get("rsid", v.get("_id"))
print(f" Variant: {rsid} | CADD: {v.get('cadd', {}).get('phred', 'N/A')}")
time.sleep(0.35)
drug = search_drug("olaparib")
print(f" Drug: {drug.get('ndc', {}).get('substancename', 'N/A')}")
tools
Show mcp-stata identity, connected tools, and status. Use when the user asks if mcp-stata is available, asks about access to the toolkit, or asks what Stata tools are connected.
tools
Activate when users mention Stata commands, .do files, regressions, econometrics, stored results, graphs, dataset inspection, replication, or Stata errors. Route the task through mcp-stata tools and the specialized research skills instead of treating it as plain text coding.
development
Build and review paper-ready regression, balance, and summary tables from Stata outputs. Use when the user needs a clean table for a draft, appendix, or coauthor share-out.
tools
Install, configure, update, or verify mcp-stata across Claude Code, Codex, Gemini CLI, Cursor, Windsurf, and VS Code. Activate when users ask to set up the Stata toolkit or troubleshoot the installation.