Skip to main content
Glama

Server Details

Query Checkly synthetic monitoring — checks, statuses, results, alerts, reporting and dashboards.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
m190/usefulapi-mcp
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.

Tool Definition Quality

Score is being calculated. Check back soon.

Available Tools

22 tools
checkly_create_maintenance_windowCreate maintenance window
Destructive
Inspect

MODIFIES THE CHECKLY ACCOUNT: schedules a maintenance window that silences alerts for a time range (e.g. during a deploy). Omit repeatUnit for a one-off window. Public API: POST /v1/maintenance-windows.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesMaintenance window name.
tagsNoTags of checks/groups to include in the window.
endsAtYesEnd time, ISO-8601.
startsAtYesStart time, ISO-8601 (e.g. 2026-07-15T22:00:00.000Z).
repeatUnitNoFor a recurring window: DAY, WEEK, or MONTH. Omit for one-off.
descriptionNoOptional description.
silenceAllAlertsNoSilence alerts for ALL checks (overrides tag scoping).
checkly_create_variableCreate environment variable
Destructive
Inspect

MODIFIES THE CHECKLY ACCOUNT: creates a new account-level environment variable. Additive (does not overwrite existing keys). Public API: POST /v1/variables.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesThe variable key (cannot be changed later).
valueYesThe variable value.
lockedNoHide the value like a password in the UI.
secretNoMark as secret — value becomes write-only after creation.
checkly_get_accountGet current account
Read-only
Inspect

Fetch details of the Checkly account tied to your credentials. Public API: GET /v1/accounts/me.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

checkly_get_checkGet a check
Read-only
Inspect

Retrieve a single check's full configuration by id. Public API: GET /v1/checks/{id}.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe check id.
includeDependenciesNoInclude dependent resources (snippets, alert channels).
checkly_get_check_alertsGet alerts for a check
Read-only
Inspect

List alert notifications for one specific check. Public API: GET /v1/check-alerts/{checkId}.

ParametersJSON Schema
NameRequiredDescriptionDefault
toNoEnd of range as a Unix timestamp (seconds).
fromNoStart of range as a Unix timestamp (seconds).
pageNo1-based page number.
limitNoPage size.
checkIdYesThe check id.
checkly_get_check_groupGet a check group
Read-only
Inspect

Retrieve a single check group by id. Public API: GET /v1/check-groups/{id}.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe check group id.
checkly_get_check_resultGet a check result
Read-only
Inspect

Retrieve a single check-run result in full. Public API: GET /v1/check-results/{checkId}/{checkResultId}.

ParametersJSON Schema
NameRequiredDescriptionDefault
checkIdYesThe check id.
checkResultIdYesThe check result id.
checkly_get_check_statusGet check status
Read-only
Inspect

Retrieve the current status details for a single check. Public API: GET /v1/check-statuses/{checkId}.

ParametersJSON Schema
NameRequiredDescriptionDefault
checkIdYesThe check id.
checkly_get_reportingGet reporting
Read-only
Inspect

Aggregated availability / performance / SLA report across checks and groups. Public API: GET /v1/reporting.

ParametersJSON Schema
NameRequiredDescriptionDefault
toNoEnd of range as a Unix timestamp (seconds).
fromNoStart of range as a Unix timestamp (seconds).
timezoneNoIANA timezone, e.g. Europe/Berlin.
quickRangeNoPreset range, e.g. last24Hrs, last7Days, last30Days, thisWeek, thisMonth, lastWeek, lastMonth.
granularityNoBucket size for time series.
filterByTagsNoFilter by a tag.
checkly_list_alert_channelsList alert channels
Read-only
Inspect

List all alert channels (email, Slack, webhook, PagerDuty, etc.) configured in the account. Public API: GET /v1/alert-channels.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo1-based page number.
limitNoPage size.
checkly_list_check_alertsList check alerts
Read-only
Inspect

List recent alert notifications fired across the whole account. Public API: GET /v1/check-alerts.

ParametersJSON Schema
NameRequiredDescriptionDefault
toNoEnd of range as a Unix timestamp (seconds).
fromNoStart of range as a Unix timestamp (seconds).
pageNo1-based page number.
limitNoPage size.
checkly_list_check_groupsList check groups
Read-only
Inspect

List all check groups (shared config for a set of checks). Public API: GET /v1/check-groups.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagNoFilter by a tag.
nameNoFilter by group name.
pageNo1-based page number.
limitNoPage size.
checkly_list_check_resultsList check results
Read-only
Inspect

List individual run results for a check (latency, success, location, response). Public API: GET /v1/check-results/{checkId}.

ParametersJSON Schema
NameRequiredDescriptionDefault
toNoEnd of range as a Unix timestamp (seconds).
fromNoStart of range as a Unix timestamp (seconds).
pageNo1-based page number.
limitNoPage size.
checkIdYesThe check id.
locationNoFilter by run location, e.g. eu-west-1.
resultTypeNoFINAL, ATTEMPT, or ALL.
hasFailuresNoOnly return results that contain failures.
checkly_list_checksList checks
Read-only
Inspect

List all synthetic monitoring checks (API, browser, URL, heartbeat, etc.) in the account. Public API: GET /v1/checks.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagNoFilter by a tag.
pageNo1-based page number.
limitNoPage size.
searchNoFree-text search across check names.
checkTypeNoFilter by check type, e.g. API, BROWSER, URL, HEARTBEAT.
checkly_list_check_statusesList check statuses
Read-only
Inspect

List the current pass/fail/degraded status of every check — the 'what's down right now' view. Public API: GET /v1/check-statuses.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

checkly_list_dashboardsList dashboards
Read-only
Inspect

List all public/private status dashboards. Public API: GET /v1/dashboards.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo1-based page number.
limitNoPage size.
checkly_list_locationsList locations
Read-only
Inspect

List all public checking locations Checkly can run checks from. Public API: GET /v1/locations.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

checkly_list_maintenance_windowsList maintenance windows
Read-only
Inspect

List all maintenance windows (periods where alerts are silenced). Public API: GET /v1/maintenance-windows.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo1-based page number.
limitNoPage size.
checkly_list_private_locationsList private locations
Read-only
Inspect

List all private (self-hosted) checking locations. Public API: GET /v1/private-locations.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

checkly_list_runtimesList runtimes
Read-only
Inspect

List all supported runtimes (Node versions + bundled dependencies) for browser/API checks. Public API: GET /v1/runtimes.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

checkly_list_snippetsList snippets
Read-only
Inspect

List all reusable code snippets. Public API: GET /v1/snippets.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo1-based page number.
limitNoPage size.
checkly_list_variablesList variables
Read-only
Inspect

List all account-level environment variables. Note: secret variable values are redacted by the API. Public API: GET /v1/variables.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo1-based page number.
limitNoPage size.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.