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
2 changes: 2 additions & 0 deletions ai/mcp-server/security-and-permissions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand All @@ -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.

Expand Down
4 changes: 3 additions & 1 deletion ai/mcp-server/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
]
}
}
Expand Down
Loading