Skip to main content
The NoClick node gives an AI agent in your workflow NoClick’s own MCP tools, the same tools external clients get through the MCP server. There is nothing to configure on the auth side: you are already signed in, so the node issues a short-lived access token for your account on every run.

Add it to an agent

Add a NoClick node and wire it into the AI agent’s bottom handle, the same way you wire any tool provider. It works with every agent type, including the in-process LLM agent and the CLI agents (Claude Code, Codex, OpenCode). The agent sees the tools with a noclick_ prefix: noclick_create_workflow, noclick_update_workflow, noclick_run_workflow, and so on.
NoClick node wired into an agent with the scope dropdown visible

Scope

The Scope field controls which workflows the agent can touch:
OptionWhat the agent gets
All workflowsThe full tool set across your whole workspace
This workflow onlyTools scoped to the workflow the agent runs in
Specific workflowsTools scoped to a list you pick in the Allowed Workflows field
When scoped, workspace-level tools (creating, listing, and deleting workflows, folder and workspace management) are hidden, and workflow_id parameters are filled in automatically so the agent cannot wander outside its scope. Browser-session tools like open_workflow are never included.

What an agent can do with it

  • Create new workflows and wire up nodes with noclick_update_workflow
  • Inspect and reconfigure nodes in existing workflows
  • Run workflows or individual nodes and read their outputs
  • Search your credentials to connect nodes that need authentication

Example: an agent that builds workflows on demand

Wire a Telegram trigger into an AI agent and a NoClick node into the agent’s bottom handle, with scope All workflows. Message it “build me a workflow that emails me a summary of my GitHub notifications every morning” and the agent creates the workflow, adds and configures the nodes, runs a test, and replies with the result. You get a workflow factory you can drive from chat.
The agent acts as you. With All workflows scope it can modify and delete any workflow in your workspace, so scope it down when the agent only needs to manage itself.

Next steps

Available MCP tools

The full list of tools the agent can call.

Agent tools

All the ways to give agents tools.