Workflow Routes as MCP Tools
Every route you publish becomes a tool AI agents can discover and call
The Model Context Protocol (MCP) defines a standard way for AI agents to discover and invoke external tools. Apitide turns your existing workflow routes into MCP-compliant tools automatically — no extra code, no separate tool definitions, no schema writing.
Select the workflow routes you want to expose when creating an MCP server. Apitide reads the route's trigger configuration — HTTP method, endpoint path, request schema, query parameters, and description — and generates the MCP tool definition from that metadata. The tool name is derived from the route slug, with an optional workflow prefix for disambiguation across large route lists.
When an AI agent calls a tool, Apitide executes the corresponding workflow route with the agent-supplied parameters, applies any configured transformations, and returns the result. The full Apitide execution engine runs — parallel steps, caching, credential injection, schema validation — exactly as it does for regular HTTP calls. The agent gets a clean, structured response without knowing anything about the underlying service topology.
zero
extra code to expose a route as a tool