Install
openclaw skills install @brucegutman/pipeworx-pubmedSearch PubMed for biomedical articles by keyword, author, or MeSH term; retrieve article metadata and full abstracts with structured section labels.
openclaw skills install @brucegutman/pipeworx-pubmedSearch and retrieve biomedical literature from the National Library of Medicine's PubMed database. Over 36 million citations from MEDLINE, life science journals, and online books.
| Tool | Description |
|---|---|
search_pubmed | Search by keyword, author name, or MeSH term. Returns PubMed IDs. |
get_summary | Metadata for one or more articles: title, authors, journal, DOI. |
get_abstract | Full abstract text with section labels (Background, Methods, Results, Conclusions). |
search_pubmedget_summaryget_abstractcurl -X POST https://gateway.pipeworx.io/pubmed/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_pubmed","arguments":{"query":"CRISPR cancer therapy","limit":5}}}'
PubMed supports field-tagged searches. Some useful patterns:
"Smith J"[Author] -- search by author"COVID-19"[MeSH] -- search MeSH terms"Nature"[Journal] -- restrict to a journalCRISPR AND (cancer OR tumor){
"mcpServers": {
"pubmed": {
"url": "https://gateway.pipeworx.io/pubmed/mcp"
}
}
}
No API key required. Powered by NCBI E-utilities.