How to Use the Checkly MCP in CrewAI
Deploy specialized CrewAI agent teams to monitor, test, and triage Checkly issues autonomously.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Checkly MCP to CrewAI
Create your Vinkius account to connect Checkly to CrewAI and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Multi-agent collaboration for Checkly alerts
`list_checkly_alert_channels` identifies where your team receives system alerts, allowing a CrewAI dispatcher agent to coordinate responses. At the same time, a separate analyzer agent uses `list_checkly_checks` to locate the exact endpoints that triggered the alarm. This setup relies on CrewAI's shared memory. The analyzer agent passes the broken check IDs to the dispatcher agent, which then runs diagnostic tools sequentially without human intervention.
Autonomous performance debugging with this MCP Server
`get_check_performance_metrics` pulls raw latency and response times so your specialized QA agent can analyze trends. If it spots a spike, the agent calls `get_check_details` to check if recent config changes caused the slowdown. You configure this by adding the Vinkius URL directly to the `mcps` array in your agent definition. This gives your crew instant access to monitoring statistics without writing custom API wrappers.
Cron and heartbeat failure triage
`list_checkly_heartbeats` tracks your background cron jobs to verify they check in on time. When a heartbeat goes silent, a moderator agent uses `trigger_check_run` to force an immediate test and confirm the outage. To limit what your agents can do, use the `MCPServerHTTP` class from `crewai.mcp` with a `tool_filter`. This restricts your autonomous crew to read-only tools or specific test suites.
Set up Checkly MCP in CrewAI
Prerequisites
- Python 3.10+ installed
-
crewaipackage (pip install crewai) - Active Vinkius subscription with a valid endpoint token
- 1
Install CrewAI
Run
pip install crewaito install the framework. MCP support is built-in via themcpsparameter. - 2
Add the MCP URL to your agent
Pass your Vinkius endpoint directly to the
mcpslist. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. CrewAI handles tool discovery and caching automatically. - 3
Kick off your crew
Create a
Crewwith your agent and tasks. Callcrew.kickoff()— the agent will automatically invoke Checkly tools as needed.
from crewai import Agent, Task, Crew
agent = Agent(
role="Checkly Analyst",
goal="Access and analyze Checkly data via MCP.",
backstory="Expert analyst with direct Checkly access.",
mcps=[
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
],
)
task = Task(
description="List recent Checkly transactions",
agent=agent,
expected_output="A summary of recent activity",
)
crew = Crew(agents=[agent], tasks=[task])
result = crew.kickoff()
print(result) Prerequisites
- Python 3.10+ installed
-
crewai+crewai-toolspackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install crewai crewai-tools. TheMCPServerAdapterhandles lifecycle management and tool conversion. - 2
Connect with MCPServerAdapter
Use
MCPServerAdapteras a context manager withSseServerParameterspointing to your Vinkius endpoint. The adapter automatically manages connection lifecycle. - 3
Assign tools and run
Pass the returned
mcp_toolsto your agent'stoolsparameter. The adapter converts MCP tools to nativeBaseToolobjects compatible with all CrewAI agents.
from crewai import Agent, Task, Crew
from crewai_tools import MCPServerAdapter
from mcp import SseServerParameters
server_params = SseServerParameters(
url="https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
with MCPServerAdapter(server_params) as mcp_tools:
agent = Agent(
role="Checkly Analyst",
goal="Access and analyze Checkly data via MCP.",
backstory="Expert analyst with direct Checkly access.",
tools=mcp_tools,
)
task = Task(
description="List recent Checkly transactions",
agent=agent,
expected_output="A summary of recent activity",
)
crew = Crew(agents=[agent], tasks=[task])
result = crew.kickoff()
print(result) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Checkly. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Checkly MCP in CrewAI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Checkly MCP today
We host it, we monitor it, we maintain it. You just paste one token.