Skip to main content

Available MCP Tools

When you connect NoClick MCP to your AI assistant, you get access to the following tools for managing workflows, databases, and more.

Workflow Tools

list_workflows

List all workflows in your account.
Parameters:
- query (optional): Search filter for workflow names
- limit (optional): Maximum number of results (default: 50)

create_workflow

Create a new workflow with a name and description.
Parameters:
- name: The workflow name
- description: What the workflow does

open_workflow

Open an existing workflow in the editor by its ID.
Parameters:
- workflow_id: The ID of the workflow to open

get_open_workflow

Get the currently open workflow in the editor, including all nodes and their configurations.
Parameters:
- include_configs: Whether to include full node configurations

run_workflow

Execute the currently open workflow.
Parameters:
- workflow_id: The ID of the workflow to run

add_workflow_node

Add a new node to a workflow.
Parameters:
- workflow_id: Target workflow ID
- node_type: Type of node to add (e.g., "automation-google-sheets", "agent", "iteration")
- config: Node configuration object
- prev_node_id (optional): Node to connect this new node after

search_workflow_nodes

Search for available node types to add to workflows.
Parameters:
- query: Search term for node types

Database Tools

list_database_tables

List all database tables in your account with their schemas.

create_database_table

Create a new database table.
Parameters:
- virtual_table_name: Internal name for the table
- title: Display name
- description: Table description
- columns: Column definitions with types and constraints

execute_sql_query

Run a SQL query on your databases (SELECT, INSERT, UPDATE, DELETE).
Parameters:
- sql: The SQL query to execute

Node Configuration Tools

get_workflow_node_config_schema

Get the JSON schema for configuring a specific node type.
Parameters:
- node_type: The node type to get schema for
- config_type: The configuration type

update_workflow_node_config

Update a node’s configuration.
Parameters:
- workflow_id: The workflow containing the node
- node_id: The node to update
- config: New configuration values

load_node_field_options

Load dynamic options for a node field (e.g., list of spreadsheets for a Google Sheets node).
Parameters:
- node_type: The node type
- field_name: Which field to load options for
- credential_id (optional): OAuth credential to use
- depends_on (optional): Parent field values for cascading dropdowns

Credential Tools

list_credentials

List available OAuth credentials/connections.
Parameters:
- credential_type (optional): Filter by type (e.g., "google_sheets_oauth")

Example Usage

Here’s how you might use these tools with Claude Code:
"Create a new workflow called 'Daily Report' that reads data
from my Google Sheet and sends a summary to Slack"
Your AI assistant will use these MCP tools automatically to fulfill your requests.