Multi Sentry MCP Server

Multi-portfolio Sentry MCP configuration generator with per-company isolation and clean handoff

Local serverstdio

What is the Multi Sentry MCP MCP server?

Multi-portfolio Sentry MCP configuration generator with per-company isolation and clean handoff. The multi sentry mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.

What it actually does

Multi-org Sentry MCP configuration generator. Run multiple Sentry organizations simultaneously in Claude Desktop, Claude Code, or Cursor — each with isolated tokens, org-scoped sessions, and zero cross-org leakage.

Adding it to your client

@sentry/mcp-server on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Its toolset

Everything the assistant can do here goes through one of these:

  • org — read
  • project — read
  • team — read
  • event — write
  • Field — Required
  • display_name — Yes
  • sentry_org_slug — Yes
  • sentry_project_slug — No
  • token_env_var — Yes
  • ai_search — Yes
  • active — Yes
  • skills — No

Configuration

You will need 3 environment variables: SENTRY_ACCESS_TOKEN, EMBEDDED_AGENT_PROVIDER, ANTHROPIC_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Multi Sentry MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the multi sentry mcp mcp server does with a few real requests.

When to reach for it

This sits in the monitoring and observability group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Multi Sentry MCP's toolset — org, project, team and 11 more — is a fair guide to whether it matches your workflow. It is maintained by ideacraftershq; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
orgread
projectread
teamread
eventwrite
FieldRequired
display_nameYes
sentry_org_slugYes
sentry_project_slugNo
token_env_varYes
ai_searchYes
activeYes
skillsNo
SkillDefault
inspectON

How to install the Multi Sentry MCP MCP server

{
  "mcpServers": {
    "sentry-acme-web": {
      "command": "npx",
      "args": [
        "@sentry/mcp-server@latest",
        "--organization-slug=acme-web",
        "--project-slug=acme-web-app"
      ],
      "env": {
        "SENTRY_ACCESS_TOKEN": "${SENTRY_TOKEN_ACME_WEB}",
        "EMBEDDED_AGENT_PROVIDER": "anthropic",
        "ANTHROPIC_API_KEY": "${ANTHROPIC_API_KEY}"
      }
    },
    "sentry-widgets-inc": {
      "command": "npx",
      "args": [
        "@sentry/mcp-server@latest",
        "--organization-slug=widgets-inc",
        "--project-slug=widgets-api"
      ],
      "env": {
        "SENTRY_ACCESS_TOKEN": "${SENTRY_TOKEN_WIDGETS_INC}",
        "EMBEDDED_AGENT_PROVIDER": "anthropic",
        "ANTHROPIC_API_KEY": "${ANTHROPIC_API_KEY}"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
SENTRY_ACCESS_TOKENCredential the server authenticates with.Yes
EMBEDDED_AGENT_PROVIDERConfiguration value read at startup.Optional
ANTHROPIC_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Multi Sentry MCP to org.
  • Use Multi Sentry MCP to project.
  • Use Multi Sentry MCP to team.

Frequently asked questions

It connects Multi Sentry MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (org, project, team, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Multi Sentry MCP directly.