claude-code - 💡(How to fix) Fix [BUG] permissions.allow in settings.json is not honored in Claude Code web remote execution — MCP tools still blocked

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

MCP tool calls listed explicitly in permissions.allow in .claude/settings.json still return "MCP tool call requires approval" in the Claude Code web remote execution environment. The allowlist is being ignored entirely — no approval prompt appears, and the calls simply fail.

Error Message

{ "permissions": { "allow": [ "mcp__3ffcaf2d-d379-483a-8b08-954510a42f23__slack_send_message", "mcp__67791568-d862-4be5-8bcd-17710bfe5b77__createConfluencePage", "mcp__dcf3e095-536a-4f52-95d8-a7b797d544b6__search_files", "mcp__dcf3e095-536a-4f52-95d8-a7b797d544b6__list_recent_files", "mcp__dcf3e095-536a-4f52-95d8-a7b797d544b6__create_file" // ... and more ] } }

Test results

| Tool | In permissions.allow? | Result

-- | -- | -- | -- 1 | slack_read_channel | Yes | ✅ Executes without prompt 2 | slack_send_message | Yes | ❌ MCP tool call requires approval 3 | getPagesInConfluenceSpace | Yes | ✅ Executes without prompt 4 | createConfluencePage | Yes | ❌ MCP tool call requires approval 5 | search_files (Google Drive) | Yes | ❌ MCP tool call requires approval 6 | create_file (Google Drive) | Yes | ❌ MCP tool call requires approval

Streamable HTTP error: Error POSTing to endpoint: MCP tool call requires approval

What Should Happen?

Expected behaviour Tools listed in permissions.allow should execute without any approval prompt, per the documented behaviour of the permissions system.

Observed behaviour The allowlist is not being respected. Write operations (Slack, Confluence) and all Google Drive operations fail regardless of their presence in permissions.allow. No approval prompt appears — the calls simply return the error above.

Additional context Read-only operations for Slack and Confluence work correctly and silently (also in the allowlist) Google Drive fails even on read operations (search_files, list_recent_files), suggesting its auth context may not be passed through to the remote execution environment at all The same MCP connections work in Claude.ai, where an approval UI surfaces as expected Reproducible across multiple sessions and after re-login Both ~/.claude/settings.json (user-level) and .claude/settings.json (project-level) were checked; the tools appear in the project-level allowlist

Error Messages/Logs

Root Cause

  1. Open Claude Code on the web (claude.ai/code) and start a new session in a git repository
  2. Ensure the following tools are listed in .claude/settings.json under permissions.allow:
    {
      "permissions": {
        "allow": [
          "mcp__<uuid>__slack_send_message",
          "mcp__<uuid>__createConfluencePage",
          "mcp__<uuid>__search_files"
        ]
      }
    }

Connect Slack, Atlassian (Confluence), and Google Drive MCP servers via Claude Code settings Ask Claude to run the following tool calls: Slack write: Send a DM to yourself via slack_send_message Confluence write: Create a page via createConfluencePage Google Drive read: Search files via search_files Observe the result Expected result All three calls execute silently — no approval prompt, no error — because they are explicitly listed in permissions.allow.

Code Example

{
  "permissions": {
    "allow": [
      "mcp__3ffcaf2d-d379-483a-8b08-954510a42f23__slack_send_message",
      "mcp__67791568-d862-4be5-8bcd-17710bfe5b77__createConfluencePage",
      "mcp__dcf3e095-536a-4f52-95d8-a7b797d544b6__search_files",
      "mcp__dcf3e095-536a-4f52-95d8-a7b797d544b6__list_recent_files",
      "mcp__dcf3e095-536a-4f52-95d8-a7b797d544b6__create_file"
      // ... and more
    ]
  }
}

Test results


# | Tool | In permissions.allow? | Result
-- | -- | -- | --
1 | slack_read_channel | Yes |Executes without prompt
2 | slack_send_message | Yes | ❌ MCP tool call requires approval
3 | getPagesInConfluenceSpace | Yes |Executes without prompt
4 | createConfluencePage | Yes | ❌ MCP tool call requires approval
5 | search_files (Google Drive) | Yes | ❌ MCP tool call requires approval
6 | create_file (Google Drive) | Yes | ❌ MCP tool call requires approval

Streamable HTTP error: Error POSTing to endpoint: MCP tool call requires approval


### What Should Happen?

Expected behaviour
Tools listed in permissions.allow should execute without any approval prompt, per the documented
behaviour of the permissions system.

Observed behaviour
The allowlist is not being respected. Write operations (Slack, Confluence) and all Google Drive
operations fail regardless of their presence in permissions.allow. No approval prompt appears —
the calls simply return the error above.

Additional context
Read-only operations for Slack and Confluence work correctly and silently (also in the allowlist)
Google Drive fails even on read operations (search_files, list_recent_files), suggesting
its auth context may not be passed through to the remote execution environment at all
The same MCP connections work in Claude.ai, where an approval UI surfaces as expected
Reproducible across multiple sessions and after re-login
Both ~/.claude/settings.json (user-level) and [.claude/settings.json](https://github.com/dleibu/my-claude/blob/claude/test-integrations-KZam8/.claude/settings.json) (project-level) were checked;
the tools appear in the project-level allowlist

### Error Messages/Logs

---

### Steps to Reproduce

## Steps to reproduce

1. Open Claude Code on the web (claude.ai/code) and start a new session in a git repository
2. Ensure the following tools are listed in `.claude/settings.json` under `permissions.allow`:
RAW_BUFFERClick to expand / collapse

Preflight Checklist

  • I have searched existing issues and this hasn't been reported yet
  • This is a single bug report (please file separate reports for different bugs)
  • I am using the latest version of Claude Code

What's Wrong?

Summary

MCP tool calls listed explicitly in permissions.allow in .claude/settings.json still return "MCP tool call requires approval" in the Claude Code web remote execution environment. The allowlist is being ignored entirely — no approval prompt appears, and the calls simply fail.

Environment

  • Surface: Claude Code web (claude.ai/code), remote execution environment
  • All affected tools are explicitly listed in .claude/settings.json under permissions.allow

settings.json (relevant excerpt)

{
  "permissions": {
    "allow": [
      "mcp__3ffcaf2d-d379-483a-8b08-954510a42f23__slack_send_message",
      "mcp__67791568-d862-4be5-8bcd-17710bfe5b77__createConfluencePage",
      "mcp__dcf3e095-536a-4f52-95d8-a7b797d544b6__search_files",
      "mcp__dcf3e095-536a-4f52-95d8-a7b797d544b6__list_recent_files",
      "mcp__dcf3e095-536a-4f52-95d8-a7b797d544b6__create_file"
      // ... and more
    ]
  }
}

Test results


# | Tool | In permissions.allow? | Result
-- | -- | -- | --
1 | slack_read_channel | Yes | ✅ Executes without prompt
2 | slack_send_message | Yes | ❌ MCP tool call requires approval
3 | getPagesInConfluenceSpace | Yes | ✅ Executes without prompt
4 | createConfluencePage | Yes | ❌ MCP tool call requires approval
5 | search_files (Google Drive) | Yes | ❌ MCP tool call requires approval
6 | create_file (Google Drive) | Yes | ❌ MCP tool call requires approval

Streamable HTTP error: Error POSTing to endpoint: MCP tool call requires approval


### What Should Happen?

Expected behaviour
Tools listed in permissions.allow should execute without any approval prompt, per the documented
behaviour of the permissions system.

Observed behaviour
The allowlist is not being respected. Write operations (Slack, Confluence) and all Google Drive
operations fail regardless of their presence in permissions.allow. No approval prompt appears —
the calls simply return the error above.

Additional context
Read-only operations for Slack and Confluence work correctly and silently (also in the allowlist)
Google Drive fails even on read operations (search_files, list_recent_files), suggesting
its auth context may not be passed through to the remote execution environment at all
The same MCP connections work in Claude.ai, where an approval UI surfaces as expected
Reproducible across multiple sessions and after re-login
Both ~/.claude/settings.json (user-level) and [.claude/settings.json](https://github.com/dleibu/my-claude/blob/claude/test-integrations-KZam8/.claude/settings.json) (project-level) were checked;
the tools appear in the project-level allowlist

### Error Messages/Logs

```shell

Steps to Reproduce

Steps to reproduce

  1. Open Claude Code on the web (claude.ai/code) and start a new session in a git repository
  2. Ensure the following tools are listed in .claude/settings.json under permissions.allow:
    {
      "permissions": {
        "allow": [
          "mcp__<uuid>__slack_send_message",
          "mcp__<uuid>__createConfluencePage",
          "mcp__<uuid>__search_files"
        ]
      }
    }

Connect Slack, Atlassian (Confluence), and Google Drive MCP servers via Claude Code settings Ask Claude to run the following tool calls: Slack write: Send a DM to yourself via slack_send_message Confluence write: Create a page via createConfluencePage Google Drive read: Search files via search_files Observe the result Expected result All three calls execute silently — no approval prompt, no error — because they are explicitly listed in permissions.allow.

Actual result All three return immediately with:

Streamable HTTP error: Error POSTing to endpoint: MCP tool call requires approval

No approval prompt appears in the UI. The calls do not execute

Claude Model

Sonnet (default)

Is this a regression?

Yes, this worked in a previous version

Last Working Version

No response

Claude Code Version

Claude 1.8089.1 (b98a06) 2026-05-19T18:28:48.000Z

Platform

Anthropic API

Operating System

macOS

Terminal/Shell

Other

Additional Information

No response

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

claude-code - 💡(How to fix) Fix [BUG] permissions.allow in settings.json is not honored in Claude Code web remote execution — MCP tools still blocked