We're building an application which allows businesses to create workflow-based MCP servers from their already existing APIs.
Current MCP server generators turn APIs into MCP tools on a 1:1 mapping; each API becomes its own tool. We consider these MCP servers to be API driven, since they're created based on the business' already existing API definition.
When a user asks an agent to "book a meeting with John at 10:00 AM on 7/20", an API-driven MCP server might require:
- Call a check conflicts tool to ensure John is free
- Call an add to calendar tool to add the meeting
- Call a send meeting invite tool to notify John
Each additional sequential tool call causes performance degradation and increased costs:
- Performance degradation: Each tool call requires LLM inference, increasing latency
- Accuracy loss: LLMs perform less accurately as sequential tool calls increase
- Higher costs: Increased token usage from multiple API calls
Our product breaks away from API-driven MCP servers by allowing users to create workflow-based MCP servers. We define workflow-based as creating MCP servers with tools that match the workflows of the users who will be using them.
Instead of requiring three consecutive tool calls, our product allows businesses to combine the APIs behind the meeting creation process into a single workflow-based tool. When a user requests to create a meeting with John, it only requires a single tool call.
- Upload OpenAPI schemas: Import your existing API definitions
- Combine APIs: Group related endpoints into workflow-based tools
- Automated processing: Our internal agent lines up inputs and outputs
- Testing: Automatically test the combined tools
- Deployment: Deploy a remote MCP server with authentication and scaling
Decreased Latency
Fewer tool calls mean faster response times
Lower Token Usage
Reduced API calls lead to cost savings
Improved Accuracy
Single tool calls perform more reliably
- Sign in with your Google account
- Upload your OpenAPI schema files
- Select the endpoints you want to include
- Create workflow-based tools that match user workflows
- Configure security credentials
- Generate and deploy your MCP server