appcontrol-mcp-go vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
appcontrol-mcp-go by AppControlLabs | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 22 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | MonitoringSecurityDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | 1 mo ago | this month |
appcontrol-mcp-go · Summary
AppControl MCP server provides read-only access to historical resource usage and system security data through natural language queries.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
appcontrol-mcp-go · Use cases
- Investigate system performance issues by identifying resource-hungry applications
- Monitor security events and detect unauthorized access attempts to peripherals
- Analyze software origins and publisher information to verify application legitimacy
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
appcontrol-mcp-go · Install
Installation Options
MCPB Package (Recommended for Claude Desktop)
- Download
appcontrol.mcpbfrom the [latest release](https://github.com/AppControlLabs/appcontrol-mcp-go/releases/latest) - Open Claude Desktop → Settings → Extensions → Advanced Settings → Install Extension
- Choose the downloaded
.mcpbfile and restart Claude Desktop
Standalone Executable
- Download
appcontrol-mcp.exefrom the [latest release](https://github.com/AppControlLabs/appcontrol-mcp-go/releases/latest) - Place in a permanent location
- Configure in your AI client's MCP settings
Claude Configuration
{
"mcpServers": {
"appcontrol": {
"command": "C:/MCP/appcontrol-mcp.exe",
"args": []
}
}
}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.