bgpt-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
bgpt-mcp by connerlambden | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 20 | ★ 149 |
| 30d uses | — | — |
| Score | 43 | 85 |
| Official | — | — |
| Categories | AI / LLM ToolsresearchDatabase | AI / LLM ToolsBrowser AutomationFile System |
| Language | JavaScript | Python |
| Last commit | 1 mo ago | 2 mo ago |
bgpt-mcp · Summary
A remote MCP server for searching scientific papers with full-text experimental data extraction.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
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
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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"
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server