From eb6b848b80e0dda932a554a1f2f2620e8fbf2698 Mon Sep 17 00:00:00 2001 From: Herve Labas Date: Fri, 11 Sep 2026 12:55:25 +0200 Subject: [PATCH] Align MCP permission documentation --- ai/mcp-server/security-and-permissions.mdx | 2 ++ ai/mcp-server/setup.mdx | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ai/mcp-server/security-and-permissions.mdx b/ai/mcp-server/security-and-permissions.mdx index 636c240b..039369a6 100644 --- a/ai/mcp-server/security-and-permissions.mdx +++ b/ai/mcp-server/security-and-permissions.mdx @@ -29,6 +29,7 @@ API keys are long-lived credentials. Use them when OAuth is unavailable or a wor | `checkly:account:read` | Read your Checkly account membership and status | | `checkly:account:invite` | Invite members to your Checkly account | | `checkly:checks:read` | List checks, their status and results | +| `checkly:checks:write` | Update Checkly check configuration | | `checkly:checks:run` | Trigger Checkly checks and on-demand test sessions | | `checkly:incidents:read` | Read your Checkly incidents | | `checkly:incidents:write` | Create and update your Checkly incidents | @@ -39,6 +40,7 @@ API keys are long-lived credentials. Use them when OAuth is unavailable or a wor | `checkly:rca:run` | Run Checkly root cause analysis for your account | | `checkly:test-sessions:read` | Read your Checkly test sessions | | `checkly:assets:read` | Read your Checkly assets | +| `checkly:usage:read` | Read organization contract usage for your Checkly account | OAuth sessions use the permissions granted by the OAuth flow. API-key sessions receive all permissions listed above except `checkly:account:invite`, so `invite-account-member` is only available with OAuth. diff --git a/ai/mcp-server/setup.mdx b/ai/mcp-server/setup.mdx index 0ac75846..76855822 100644 --- a/ai/mcp-server/setup.mdx +++ b/ai/mcp-server/setup.mdx @@ -201,6 +201,7 @@ Add the server to `.cursor/mcp.json` in your project, or to `~/.cursor/mcp.json` "checkly:account:read", "checkly:account:invite", "checkly:checks:read", + "checkly:checks:write", "checkly:checks:run", "checkly:incidents:read", "checkly:incidents:write", @@ -210,7 +211,8 @@ Add the server to `.cursor/mcp.json` in your project, or to `~/.cursor/mcp.json` "checkly:rca:read", "checkly:rca:run", "checkly:test-sessions:read", - "checkly:assets:read" + "checkly:assets:read", + "checkly:usage:read" ] } }