filesystem vs WikidataMCP
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | WikidataMCP by wmde | |
|---|---|---|
| Stars | ★ 85,748 | ★ 24 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
WikidataMCP · Summary
MCP server providing standardized tools to explore and query Wikidata programmatically for AI applications.
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
WikidataMCP · Use cases
- AI agents exploring knowledge relationships in Wikidata
- Fact-checking systems verifying information against Wikidata
- Content enrichment by connecting external data to Wikidata entities
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.
WikidataMCP · Install
Installation
- Run locally:
uv run python main.py- Using Docker:
docker compose up --build- Connect to the public server:
- Server: https://wd-mcp.wmcloud.org/
- MCP endpoint: https://wd-mcp.wmcloud.org/mcp
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"wikidata": {
"command": "curl",
"args": ["https://wd-mcp.wmcloud.org/mcp"]
}
}
}