Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/rich-chefs-nail.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'workers-observability': minor
'containers-mcp': minor
'workers-bindings': minor
---

Use new workers:read scope instead of workers:write, as these mcp servers don't require workers write permissions
2 changes: 0 additions & 2 deletions apps/sandbox-container/server/sandbox.server.app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ export type Props = AuthProps
const ContainerScopes = {
...RequiredScopes,
'account:read': 'See your account info such as account details, analytics, and memberships.',
'workers:write':
'See and change Cloudflare Workers data such as zones, KV storage, namespaces, scripts, and routes.',
} as const

export default {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class ObservabilityMCP extends McpAgent<Env, State, Props> {
const ObservabilityScopes = {
...RequiredScopes,
'account:read': 'See your account info such as account details, analytics, and memberships.',
'workers:write':
'workers:read':
'See and change Cloudflare Workers data such as zones, KV storage, namespaces, scripts, and routes.',
'workers_observability:read': 'See observability logs for your account',
} as const
Expand Down