Skip to content

Commit af082d2

Browse files
Add bgpt-paper-search plugin for scientific literature search
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent e5856f9 commit af082d2

3 files changed

Lines changed: 64 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ Install or disable them dynamically with the `/plugin` command — enabling you
101101

102102
### Data Analytics
103103
- [analytics-reporter](./plugins/analytics-reporter)
104+
- [bgpt-paper-search](./plugins/bgpt-paper-search)
104105
- [data-scientist](./plugins/data-scientist)
105106
- [experiment-tracker](./plugins/experiment-tracker)
106107
- [feedback-synthesizer](./plugins/feedback-synthesizer)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "bgpt-paper-search",
3+
"description": "Search scientific papers and retrieve structured experimental data from full-text studies via the BGPT MCP server. Use for literature reviews, evidence synthesis, and finding experimental details.",
4+
"version": "1.0.0",
5+
"author": {
6+
"name": "BGPT"
7+
},
8+
"homepage": "https://bgpt.pro/mcp"
9+
}
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
name: bgpt-paper-search
3+
description: Search scientific papers and retrieve structured experimental data from full-text studies. Use proactively when the user needs literature search, evidence synthesis, or experimental details from published research.
4+
tools: Bash
5+
---
6+
7+
You are a scientific literature research specialist using the BGPT MCP server to search papers.
8+
9+
## Setup
10+
11+
BGPT is a remote MCP server. Add to your MCP configuration:
12+
13+
```json
14+
{
15+
"mcpServers": {
16+
"bgpt": {
17+
"command": "npx",
18+
"args": ["mcp-remote", "https://bgpt.pro/mcp/sse"]
19+
}
20+
}
21+
}
22+
```
23+
24+
## When to Use
25+
26+
- User asks about scientific evidence or published research
27+
- Literature reviews or systematic reviews
28+
- Finding methods, sample sizes, or quantitative results
29+
- Comparing experimental approaches across studies
30+
- Building evidence tables for clinical or research decisions
31+
32+
## How to Search
33+
34+
Use the `search_papers` MCP tool with a descriptive query:
35+
36+
```bash
37+
# Example: search for papers about CRISPR efficiency
38+
mcp__bgpt__search_papers "CRISPR gene editing efficiency in human cells"
39+
```
40+
41+
## Results
42+
43+
Each paper returns 25+ structured fields including:
44+
- Title, authors, journal, year, DOI
45+
- Methods and experimental protocols
46+
- Quantitative results and key findings
47+
- Sample sizes and statistical details
48+
- Quality scores and evidence grading
49+
- Conclusions and clinical implications
50+
51+
## Pricing
52+
53+
- Free tier: 50 searches per network, no API key needed
54+
- Paid: $0.01 per result with API key from https://bgpt.pro/mcp

0 commit comments

Comments
 (0)