mcp-onesearch-api-poc vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-onesearch-api-poc by bdobyns | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 21 | 77 |
| Official | — | ✓ |
| Categories | SearchAI / LLM ToolsDeveloper Tools | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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"]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.