filesystem vs ebay-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | ebay-mcp by YosefHayim | |
|---|---|---|
| Stars | ★ 85,748 | ★ 63 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | E-commerceDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
ebay-mcp · Summary
eBay MCP Server provides AI assistants with access to 325 eBay API tools for inventory, orders, marketing, and analytics.
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
ebay-mcp · Use cases
- AI assistants managing eBay inventory listings and stock levels
- Automated order processing and fulfillment workflows
- Marketing campaign creation and performance analytics
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.
ebay-mcp · Install
Install eBay MCP Server
**1. Get eBay Credentials**
- Create a free [eBay Developer Account](https://developer.ebay.com/)
- Generate application keys in the [Developer Portal](https://developer.ebay.com/my/keys)
**2. Install**
npm install -g ebay-mcp**3. Setup Configuration**
npm run setup**4. Configure Claude Desktop** Add to claude_desktop_config.json:
{
"mcpServers": {
"ebay": {
"command": "ebay-mcp",
"args": []
}
}
}