aiquila vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
aiquila by elgorro | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | File SystemCloud StorageProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
aiquila · Summary
AIquila is an MCP server connecting Claude AI to Nextcloud for file and data management.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
aiquila · Use cases
- Browse and search Nextcloud files through conversation with Claude
- Create and manage notes and tasks directly via Claude AI
- Analyze documents and spreadsheets within Nextcloud interface
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
aiquila · Install
Install AIquila MCP server using npm:
npm install -g aiquila-mcpAdd to Claude Desktop configuration:
{
"mcpServers": {
"aiquila": {
"command": "npx",
"args": ["aiquila-mcp"]
}
}
}For detailed installation guides for different paths, see [Installation Documentation](docs/installation.md).
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.