MCP Catalogs
Home

airbroke vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

airbroke
by icoretech
filesystem
by modelcontextprotocol
Stars★ 215★ 85,748
30d uses
Score4977
Official
Categories
Developer ToolsMonitoringAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

airbroke · Summary

Airbroke is a PostgreSQL-based error tracking service with MCP API integration for LLM/agent connections.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

airbroke · Use cases

  • Replace commercial error tracking services like Sentry or Airbrake with a self-hosted solution
  • Integrate error reporting with AI systems through the MCP API for automated issue analysis
  • Manage application errors across multiple projects with OAuth authentication and role-based access

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

airbroke · Install

Install via Docker (recommended):

docker run -p 3000:3000 icoretech/airbroke:latest

Or build from source:

cp .env.dist .env
# Edit .env with your settings
yarn install
yarn build
yarn start

To use with Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "airbroke": {
      "command": "docker",
      "args": ["run", "-p", "3000:3000", "icoretech/airbroke:latest"]
    }
  }
}

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.

Comparison generated from public README + GitHub signals. Last updated automatically.