kernel-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
kernel-mcp-server by kernel | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 30 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
kernel-mcp-server · Summary
Kernel MCP server provides secure cloud-browser automation and app management through MCP protocol.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
kernel-mcp-server · Use cases
- Web scraping and data extraction from websites using automated browser sessions
- AI coding workflows with previewing local changes in real cloud browsers
- Automated testing of web applications across different browsers and configurations
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
kernel-mcp-server · Install
Quick Setup with Kernel CLI
# Install the CLI
brew install onkernel/tap/kernel
# or: npm install -g @onkernel/cli
# Install MCP for your tool
kernel mcp install --target <target>Manual Setup for Claude Desktop
- Go to **Settings → Connectors → Add custom connector**
- Enter: **Integration name:**
Kernel, **Integration URL:**https://mcp.onkernel.com/mcp - Click **Add**, then **Connect** next to
Kernelto approve
JSON Configuration
{
"mcpServers": {
"kernel": {
"url": "https://mcp.onkernel.com/mcp"
}
}
}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.