n8n MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| N8N_URL | Yes | Your n8n instance's base URL (e.g. https://n8n.example.com) | |
| N8N_API_KEY | Yes | Generated from your n8n instance's Settings → API page |
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_workflowsA | List n8n workflows, optionally filtered by active status, name, or comma-separated tags. Defaults to returning up to 100 workflows. n8n caps this at 250 per request;
pass a higher |
| get_workflowA | Get the full definition (nodes, connections, settings) of a workflow by ID. |
| create_workflowA | Create a new workflow. To place the workflow in a folder instead of the project root, include
|
| update_workflowA | Replace an existing workflow's definition. |
| delete_workflowB | Delete a workflow by ID. |
| activate_workflowC | Activate a workflow by ID. |
| deactivate_workflowC | Deactivate a workflow by ID. |
| list_executionsA | List workflow executions, optionally filtered by workflow ID or status (success, error, running, waiting). Defaults to returning up to 100 executions. n8n caps this at 250 per request;
pass a higher |
| get_executionA | Get details of a specific execution by ID. Set include_data=True to include input/output data. |
| execute_workflowA | Trigger a workflow's execution via its Webhook trigger node, if it has one. n8n's public API has no generic "run workflow by ID" endpoint, so this only
works for workflows containing a Webhook trigger node, and the workflow must
be active for the webhook to respond. |
| list_foldersA | List folders within a project, optionally filtered by parent folder or name.
n8n defaults to returning only 10 folders per page. Pass a higher |
| create_folderA | Create a folder within a project. Pass
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 12 tools
Each tool targets a distinct resource-action pair: workflow CRUD/lifecycle, execution retrieval/triggering, and folder listing/creation are clearly separated. Even execute_workflow and activate_workflow are unambiguous because their descriptions clarify webhook triggering versus status changes.
All tool names follow a consistent verb_noun snake_case pattern, such as list_workflows, create_folder, and deactivate_workflow. The naming is predictable and makes the action and resource immediately clear.
With 12 tools, the server is well-scoped for managing n8n workflows, executions, and folders. Each tool covers a meaningful operation without redundancy or excessive granularity.
Workflow lifecycle coverage is strong: create, read, update, delete, activate, deactivate, and list are all present. Minor gaps exist for folders (no update or delete operations) and executions (no cancel or delete), but core workflows are fully covered and workarounds are available.