MCP Catalogs
Home

sentry-mcp vs filesystem

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

sentry-mcp
by getsentry
filesystem
by modelcontextprotocol
Stars★ 691★ 85,748
30d uses
Score5377
Official
Categories
Developer ToolsMonitoringAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

sentry-mcp · Summary

MCP server for Sentry integration with LLMs, providing error tracking and debugging capabilities.

filesystem · Summary

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

sentry-mcp · Use cases

  • Debugging application errors with natural language queries
  • Tracking and analyzing application performance issues
  • Integrating Sentry error reporting into AI coding assistants

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

sentry-mcp · Install

Installation

Claude Code Plugin

claude plugin marketplace add getsentry/sentry-mcp
claude plugin install sentry-mcp@sentry-mcp

MCP Configuration

{
  "mcpServers": {
    "sentry": {
      "command": "npx",
      "args": ["@sentry/mcp-server"],
      "env": {
        "SENTRY_ACCESS_TOKEN": "your-token",
        "EMBEDDED_AGENT_PROVIDER": "openai",
        "OPENAI_API_KEY": "sk-..."
      }
    }
  }
}

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.