Workflow Run

Developer MCP

Execute a linear chain of MCP tool calls in one round-trip. Each step's args can reference the previous step's output.

This page documents the MCP tool findutils:workflow_run.

View as Markdown

Call it over MCP

Tool name findutils:workflow_run · no API keys · 120 requests/min per IP

Claude Code

claude mcp add findutils --transport http https://mcp.findutils.com/

Claude Desktop — claude_desktop_config.json

{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}

Raw JSON-RPC (any MCP client) — verified example

curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "workflow_run",
      "arguments": {
        "steps": [
          {
            "toolId": "base64_encode",
            "args": {
              "text": "chain"
            }
          },
          {
            "toolId": "url_encode",
            "args": {
              "text": "$prev"
            }
          }
        ]
      }
    }
  }'

Input schema

Fetch this tool's machine-readable schema from GET https://api.findutils.com/api/tools/, or call tools/list on the MCP server.

Example arguments (verified)

{
  "steps": [
    {
      "toolId": "base64_encode",
      "args": {
        "text": "chain"
      }
    },
    {
      "toolId": "url_encode",
      "args": {
        "text": "$prev"
      }
    }
  ]
}

More Developer tools