n8n MCP Server provides a bridge between AI assistants and n8n workflow automation through the Model Context Protocol. It offers tools for managing workflows (listing, creating, updating, activating) and executions, along with resources for accessing workflow data. Built with TypeScript and using the MCP SDK, it authenticates with n8n via API keys and follows a layered architecture that separates API client, tools, and resources. This implementation is particularly valuable for users who want to automate tasks, monitor workflow executions, or integrate n8n capabilities directly within AI assistant conversations.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
List all workflows available in the n8n instance.
Get details of a specific workflow. Parameters: workflow_id (string)
Create a new workflow. Parameters: workflow_data (object)
Update an existing workflow. Parameters: workflow_id (string), workflow_data (object)
Delete a workflow. Parameters: workflow_id (string)
Activate a workflow. Parameters: workflow_id (string)
Deactivate a workflow. Parameters: workflow_id (string)
Execute a workflow via the API. Parameters: workflow_id (string), input_data (object)
Execute a workflow via a webhook. Parameters: workflowName (string), data (object)
Get details of a specific execution. Parameters: execution_id (string)
List executions for a workflow. Parameters: workflow_id (string)
Stop a running execution. Parameters: execution_id (string)