deepseek-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
deepseek-mcp-server by DMontgomery40 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 334 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
deepseek-mcp-server · Summary
A comprehensive MCP server exposing DeepSeek V4 API tools for chat completions, model listing, and balance checking.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
deepseek-mcp-server · Use cases
- Integrating DeepSeek models into AI assistants and workflows through MCP
- Building applications with function calling and reasoning capabilities
- Managing and monitoring DeepSeek API usage and account balance
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
deepseek-mcp-server · Install
Installation
Local Stdio
DEEPSEEK_API_KEY="your-api-key" npx -y deepseek-mcp-serverDocker
docker pull docker.io/dmontgomery40/deepseek-mcp-server:0.5.0
docker run --rm -i -e DEEPSEEK_API_KEY="your-api-key" docker.io/dmontgomery40/deepseek-mcp-server:0.5.0Claude Desktop
Add to your Claude Desktop config:
{
"mcpServers": {
"deepseek": {
"command": "npx",
"args": ["-y", "deepseek-mcp-server"],
"env": {
"DEEPSEEK_API_KEY": "your-api-key"
}
}
}
}Remote Hosted
codex mcp add deepseek --url https://deepseek-mcp.ragweld.com/mcp --bearer-token-env-var DEEPSEEK_MCP_AUTH_TOKENfilesystem · 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.