unity-api-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
unity-api-mcp by Codeturion | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 56 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 3 mo ago | this month |
unity-api-mcp · Summary
Unity API MCP server providing instant, accurate Unity documentation lookup for AI agents.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
unity-api-mcp · Use cases
- AI-assisted Unity development with accurate API documentation
- Preventing hallucinated Unity API signatures in AI-generated code
- Efficient Unity API lookup during complex multi-step research workflows
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
unity-api-mcp · Install
Add to your MCP config (.mcp.json, mcp.json, or your tool's MCP settings), setting UNITY_VERSION to match your project:
{
"mcpServers": {
"unity-api": {
"command": "uvx",
"args": ["unity-api-mcp"],
"env": {
"UNITY_VERSION": "2022"
}
}
}
}Valid values: "2022", "2023", or "6".
On first run, the server downloads the correct database (~18-24 MB) to ~/.unity-api-mcp/.
Alternatively, you can install with pip: pip install unity-api-mcp and modify the configuration to use command": "unity-api-mcp" instead of uvx.
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.