bgpt-paper-search
bgpt-paper-search:BGPT是一个remote MCP server that searches curated database of scientific papers built ,面向 raw experimenta…
维护者 FreedomIntelligence · 最近更新 2026年4月1日
pubmed-search:检索 PubMed ,用于 scientific literature。 Triggers on "pubmed","papers","literature","publications","research on","studies about。 适合在user asks to find papers,search literature,look up research,find publications,或 asks about recent studies时使用。
原始来源
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/pubmed-search
技能摘要
原始文档
handle = Entrez.efetch(db="pubmed", id=id_list, rettype="xml") records = Entrez.read(handle) handle.close()
for article in records['PubmedArticle']: medline = article['MedlineCitation'] pmid = str(medline['PMID']) title = medline['Article']['ArticleTitle']
# Get authors
authors = medline['Article'].get('AuthorList', [])
first_author = f"{authors[0].get('LastName', '')} {authors[0].get('Initials', '')}" if authors else "Unknown"
# Get journal and year
journal = medline['Article']['Journal']['Title']
pub_date = medline['Article']['Journal']['JournalIssue'].get('PubDate', {})
year = pub_date.get('Year', 'N/A')
# Get abstract
abstract_parts = medline['Article'].get('Abstract', {}).get('AbstractText', [])
abstract = ' '.join(str(a) for a in abstract_parts)[:300]
print(f"PMID: {pmid}")
print(f"Title: {title}")
print(f"Authors: {first_author} et al.")
print(f"Journal: {journal} ({year})")
print(f"Abstract: {abstract}...")
print(f"Link: https://pubmed.ncbi.nlm.nih.gov/{pmid}/")
print()
## 5. Advanced searches
Support these query patterns:
- `"CRISPR"[Title] AND "delivery"[Title]` — title-specific
- `"2026"[Date - Publication]` — date filter
- `"Nature"[Journal]` — journal filter
- `review[Publication Type]` — type filter
相关技能
bgpt-paper-search:BGPT是一个remote MCP server that searches curated database of scientific papers built ,面向 raw experimenta…
bio-chipseq-visualization:可视化 ChIP-seq data ,使用 deepTools,Gviz,、 ChIPseeker。 创建 heatmaps,profile plots,、 genome browser…
bio-consensus-sequences:生成 consensus FASTA sequences by applying VCF variants to reference ,使用 bcftools consensus。 适合在cr…
bio-copy-number-cnv-visualization:可视化 copy number profiles,segments,、 compare across samples。 创建 publication-quality plo…