Workato · Arazzo Workflow

Workato Provision an MCP Server with Tools

Version 1.0.0

Create an MCP server, assign tools, and confirm the tool list.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflowsArazzoWorkflows

Provider

workato

Workflows

provision-mcp-server-with-tools
Create an MCP server, assign tools, and verify them.
Creates an MCP server, reads its handle and URL, assigns tools, and lists the resulting tools.
4 steps inputs: authenticationMethod, folderId, name, tools outputs: assignedTools, handle, mcpUrl
1
createServer
Create the MCP server in the target folder.
2
confirmServer
Read the MCP server back to confirm it exists and capture its URL.
3
assignTools
Assign the supplied tools to the MCP server.
4
listTools
List the server's tools to confirm the assignment took effect.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Workato Provision an MCP Server with Tools
  summary: Create an MCP server, assign tools, and confirm the tool list.
  description: >-
    Stands up a Model Context Protocol server that exposes Workato endpoints to
    AI development environments. The workflow creates the MCP server, reads it
    back to capture its authenticated URL, assigns a set of tools to it, and
    lists the assigned tools to confirm they registered. Every step spells out
    its request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: mcpServersApi
  url: ../openapi/workato-mcp-servers-api-openapi.yml
  type: openapi
- name: toolsApi
  url: ../openapi/workato-tools-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-mcp-server-with-tools
  summary: Create an MCP server, assign tools, and verify them.
  description: >-
    Creates an MCP server, reads its handle and URL, assigns tools, and lists
    the resulting tools.
  inputs:
    type: object
    required:
    - name
    - folderId
    - tools
    properties:
      name:
        type: string
        description: Display name for the MCP server.
      folderId:
        type: integer
        description: ID of the folder to place the MCP server in.
      authenticationMethod:
        type: string
        description: Authentication method to use for the MCP server.
      tools:
        type: array
        description: Array of tools to assign (each with trigger_application and id).
        items:
          type: object
  steps:
  - stepId: createServer
    description: Create the MCP server in the target folder.
    operationId: createMcpServer
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        folder_id: $inputs.folderId
        authentication_method: $inputs.authenticationMethod
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      handle: $response.body#/handle
      mcpUrl: $response.body#/mcp_url
  - stepId: confirmServer
    description: Read the MCP server back to confirm it exists and capture its URL.
    operationId: getMcpServer
    parameters:
    - name: handle
      in: path
      value: $steps.createServer.outputs.handle
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      mcpUrl: $response.body#/mcp_url
  - stepId: assignTools
    description: Assign the supplied tools to the MCP server.
    operationId: assignToolsToMcpServer
    parameters:
    - name: handle
      in: path
      value: $steps.createServer.outputs.handle
    requestBody:
      contentType: application/json
      payload:
        tools: $inputs.tools
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tools: $response.body#/items
  - stepId: listTools
    description: List the server's tools to confirm the assignment took effect.
    operationId: listMcpServerTools
    parameters:
    - name: mcp_server_handle
      in: path
      value: $steps.createServer.outputs.handle
    - name: per_page
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      assignedTools: $response.body#/items
  outputs:
    handle: $steps.createServer.outputs.handle
    mcpUrl: $steps.confirmServer.outputs.mcpUrl
    assignedTools: $steps.listTools.outputs.assignedTools

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/workato-provision-mcp-server-with-tools-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.