MCP Tool Node
Define a published workflow-backed MCP tool surface.
The MCP Tool node is part of Builder Studio's MCP Server Builder: a set of node types for defining the tools a published user MCP server exposes to external clients. An MCP Tool node declares one workflow-backed tool surface — its name, the inputs it accepts, and the workflow that runs when an MCP client calls it.
What it is meant to define
- A tool name and description that an external MCP client sees when it lists available tools.
- The input surface for the tool — the arguments a caller must or may provide.
- The workflow that runs for each call, so the published tool is backed by a canvas graph rather than hand-written handler code.
How it is intended to fit together
Define the tool surface
An MCP Tool node names the tool and declares its inputs. This is the entry point a published MCP server advertises to clients.
Back it with a workflow
The rest of the canvas graph runs when the tool is called. Inputs flow in from the tool node; the workflow does the work.
Shape the response
An MCP Output node selects which workflow value is returned to the calling client.
Declare any credentials
An MCP Credential node declares the encrypted credential surface a tool handler needs, so secrets are configured rather than embedded.
Was this page helpful?