filesystem vs mcp-toggl
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | mcp-toggl by verygoodplugins | |
|---|---|---|
| Stars | ★ 85,748 | ★ 17 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | ProductivityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-toggl · Summary
MCP server for Toggl Track integration with intelligent caching, time tracking, and activity reporting tools.
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
mcp-toggl · Use cases
- Generate weekly and daily time tracking reports with visualizations
- Analyze time drift between tracked entries and actual desktop activity
- Start and stop timers directly through an MCP client interface
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.
mcp-toggl · Install
Claude Desktop Installation
Add this to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"mcp-toggl": {
"command": "npx",
"args": ["-y", "@verygoodplugins/mcp-toggl@latest"],
"env": {
"TOGGL_API_KEY": "your_api_key_here",
"TOGGL_DEFAULT_WORKSPACE_ID": "123456"
}
}
}
}Global install:
npm install -g @verygoodplugins/mcp-toggl
mcp-toggl --help