CrewAI is a leading open-source framework for orchestrating autonomous AI agent crews. Connect your crew to the Apideck MCP Server and let agents collaborate on accounting, HRIS, and file storage tasks across 200+ SaaS apps.
Connect CrewAI to the Apideck MCP Server with a few lines of code.
from crewai import Agent
from crewai_tools import MCPServerAdapter
with MCPServerAdapter([{
"url": "https://mcp.apideck.dev/mcp",
"transport": "sse",
"headers": {
"x-apideck-api-key": "YOUR_API_KEY",
"x-apideck-app-id": "YOUR_APP_ID",
"x-apideck-consumer-id": "YOUR_CONSUMER_ID",
},
}]) as tools:
agent = Agent(
role="Accounting Assistant",
goal="Manage invoices and payments",
tools=tools,
)Every resource below is accessible as a set of MCP tools (list, get, create, update, delete) through CrewAI.