mcp-onesearch-api-poc vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-onesearch-api-poc by bdobyns | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 0 | ★ 149 |
| 30d uses | — | — |
| Score | 21 | 85 |
| Official | — | — |
| Categories | SearchAI / LLM ToolsDeveloper Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 1 mo ago | 2 mo ago |
mcp-onesearch-api-poc · Summary
Proof of concept MCP server implementing onesearch-api with various search tools and filters.
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.
mcp-onesearch-api-poc · Use cases
- Enabling LLMs to perform complex searches through a MCP server interface
- Providing structured access to onesearch-api features through MCP tools
- Demonstrating integration patterns between search APIs and MCP protocol
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
mcp-onesearch-api-poc · Install
- Clone the repository:
git clone https://github.com/bdobyns/mcp-onesearch-api-poc.git - Install dependencies:
npm install - Run the server:
npm start
For Claude Desktop, add to your config.json:
{
"mcpServers": {
"onesearch-api": {
"command": "node",
"args": ["path/to/mcp-onesearch-api-poc/server.js"]
}
}
}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