Skip to main content
Glama
jserna0001

n8n-free-mcp

by jserna0001

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
N8N_API_KEYYesYour n8n API key
N8N_API_URLYesThe URL of your n8n instance, e.g., https://your-n8n-instance.com

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_workflowsA

List workflows on the n8n instance. Returns id, name, active state, tags and dates. Supports cursor pagination.

get_workflowA

Get a full workflow by ID, including nodes, connections and settings.

create_workflowA

Create a new workflow (created inactive; use activate_workflow to enable it). 'nodes' and 'connections' are JSON in n8n's standard export format.

update_workflowA

Replace an existing workflow (PUT). Pass the full workflow JSON (typically the result of get_workflow with modifications); read-only fields (id, active, tags, dates) are stripped automatically.

activate_workflowA

Activate a workflow (starts running on its triggers).

deactivate_workflowA

Deactivate a workflow (stops responding to its triggers).

delete_workflowA

Permanently delete a workflow. ⚠️ Irreversible — confirm with the user before using.

list_executionsA

List workflow executions. Useful for debugging: filter by status ('error', 'success', 'waiting') or by workflowId.

get_executionA

Get the details of an execution. With includeData=true it returns per-node data (can be very large) — ideal for diagnosing errors.

delete_executionA

Delete an execution record. ⚠️ Irreversible.

list_tagsB

List the tags available on the n8n instance.

check_connectionA

Verify that the n8n instance responds and the API key is valid.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 12 tools

Disambiguation5/5

Each tool targets a distinct operation: activation, CRUD for workflows, execution management, tag listing, and connection check. No ambiguity between tools with similar verbs (e.g., activate vs. create vs. update) due to clear resource differentiation.

Naming Consistency5/5

All tool names follow a consistent verb_noun convention in snake_case (e.g., activate_workflow, list_executions, check_connection), making the toolset predictable and easy to navigate for an agent.

Tool Count5/5

With 12 tools covering workflow CRUD, activation, execution management, tags, and connection verification, the count is well-scoped for the n8n domain. Neither too few nor excessive.

Completeness4/5

The toolset provides comprehensive lifecycle coverage for workflows and executions. A minor gap is the absence of a manual trigger/run tool, but the core operations are fully covered.

Maintenance

ActivityInactive
ResponsivenessNo issues