mcp-onesearch-api-poc vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-onesearch-api-poc by bdobyns | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 21 | 77 |
| Official | — | ✓ |
| Categories | SearchAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-onesearch-api-poc · Summary
Proof of concept MCP server implementing onesearch-api with various search tools and filters.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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"]
}
}
}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