filesystem vs autotask-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | autotask-mcp by wyre-technology | |
|---|---|---|
| Stars | ★ 85,748 | ★ 36 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | ProductivityDeveloper ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
autotask-mcp · Summary
MCP server providing 39 tools for Kaseya Autotask PSA integration, enabling AI to manage tickets, projects, time entries, and companies through natural language.
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
autotask-mcp · Use cases
- Service desk automation: AI can search and update tickets without leaving the chat interface
- Project management: Create and manage projects directly through AI commands
- Time tracking: Automatically log time entries for completed tasks
- Customer service: Quickly retrieve company and contact information during support conversations
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.
autotask-mcp · Install
Installation
Option 1: MCPB Bundle (Claude Desktop)
- Download
autotask-mcp.mcpbfrom the [latest release](https://github.com/wyre-technology/autotask-mcp/releases/latest) - Open the file (double-click or drag into Claude Desktop)
- Enter your Autotask credentials when prompted
Option 2: Claude Code (CLI)
claude mcp add autotask-mcp \
-e AUTOTASK_USERNAME=your-user@company.com \
-e AUTOTASK_SECRET=your-secret \
-e AUTOTASK_INTEGRATION_CODE=your-code \
-- npx -y github:wyre-technology/autotask-mcpOption 3: Docker
{
"mcpServers": {
"autotask": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "MCP_TRANSPORT=stdio",
"-e", "AUTOTASK_USERNAME=your-user@company.com",
"-e", "AUTOTASK_SECRET=your-secret",
"-e", "AUTOTASK_INTEGRATION_CODE=your-code",
"--entrypoint", "node",
"ghcr.io/wyre-technology/autotask-mcp:latest",
"dist/entry.js"
]
}
}
}```