Add Scientific Paper Research agent (BGPT MCP)#808
Open
connerlambden wants to merge 2 commits intogithub:mainfrom
Open
Add Scientific Paper Research agent (BGPT MCP)#808connerlambden wants to merge 2 commits intogithub:mainfrom
connerlambden wants to merge 2 commits intogithub:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new GitHub Copilot custom agent focused on scientific literature research, backed by the BGPT MCP server, so users can search papers and extract structured experimental details directly from Copilot Chat.
Changes:
- Introduces a new
scientific-paper-researchagent with MCP configuration for BGPT over SSE. - Defines an agent workflow for querying, reviewing structured results (methods/results/sample sizes/quality), and synthesizing evidence.
Comment on lines
+1
to
+14
| --- | ||
| name: Scientific Paper Research | ||
| description: 'Research agent that searches scientific papers and retrieves structured experimental data from full-text studies using the BGPT MCP server.' | ||
| tools: | ||
| - read | ||
| - edit | ||
| - search | ||
| - bgpt/* | ||
| mcp-servers: | ||
| bgpt: | ||
| type: "sse" | ||
| url: "https://bgpt.pro/mcp/sse" | ||
| tools: ["search_papers"] | ||
| --- |
There was a problem hiding this comment.
This PR adds a new agent file, but it isn’t discoverable from the agents index. Please add an entry for this agent to docs/README.agents.md (title/description + BGPT MCP server link) so users can find/install it from the docs table.
b1e9d87 to
df9cfd0
Compare
aaronpowell
requested changes
Feb 25, 2026
Contributor
aaronpowell
left a comment
There was a problem hiding this comment.
Branches should be created from the staged branch not main, and PR's target `staged.
Please review the contributing guide.
aaed079 to
e891f9f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new agent for scientific paper research using the BGPT MCP server.
This agent helps developers and researchers search scientific papers and retrieve structured experimental data (methods, results, sample sizes, quality scores) from full-text studies — directly from Copilot Chat.
MCP Server
https://bgpt.pro/mcp/ssesearch_papers— natural language search across scientific literatureUse Case
A developer working on a health/biotech application needs to validate clinical evidence or review published research without leaving the editor. The agent searches papers, returns structured experimental data, and synthesizes findings.
Ref: #806
Made with Cursor