bgpt-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
bgpt-mcp by connerlambden | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsresearchDatabase | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
bgpt-mcp · Summary
A remote MCP server for searching scientific papers with full-text experimental data extraction.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
bgpt-mcp · Use cases
- Literature reviews with real experimental data analysis
- Evidence synthesis by grounding AI responses in actual study findings
- Research assistance by finding papers based on methodology or outcomes
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
bgpt-mcp · Install
Installation Options
**Option A: Remote Connection (Recommended)**
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"bgpt": {
"url": "https://bgpt.pro/mcp/sse"
}
}
}For other MCP clients like Cursor, add to .cursor/mcp.json or equivalent config file using the same structure.
**Option B: Via npx**
{
"mcpServers": {
"bgpt": {
"command": "npx",
"args": ["-y", "bgpt-mcp"]
}
}
}**Option C: Install Globally**
npm install -g bgpt-mcpThen add to MCP config:
{
"mcpServers": {
"bgpt": {
"command": "bgpt-mcp"
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything