Skip to content

Commit 2d718f4

Browse files
committed
chore(zendesk): update OAuth scope for full access
Expanded OAuth scope to "read write" in configurations and documentation to enable full tool access for Zendesk MCP server, allowing write operations instead of read-only access.
1 parent 025393e commit 2d718f4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/libraries/zendesk-mcp-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ server behavior lives under `Mcp`. All keys are environment-overridable (`__` ma
107107
"OAuth": { // OAuth 2.0 client_credentials (confidential client)
108108
"ClientId": "***",
109109
"ClientSecret": "***",
110-
"Scope": "read" // use "read write" to enable the write tools
110+
"Scope": "read write" // full tool surface; drop "write" for a read-only client
111111
}
112112
}
113113
},

src/ES.FX.Zendesk.MCP.Host/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"OAuth": {
3737
"ClientId": "",
3838
"ClientSecret": "",
39-
"Scope": "read"
39+
"Scope": "read write"
4040
},
4141
"Settings": {
4242
"HealthChecks": { "Enabled": true },

0 commit comments

Comments
 (0)