- Explore MCP Servers
- n8n-meta-agent
N8n Meta Agent
What is N8n Meta Agent
n8n-meta-agent is a meta-agent system designed for orchestrating n8n workflows with integration support for the Model Context Protocol (MCP). It combines n8n’s workflow automation capabilities with advanced AI features to enable intelligent automation.
Use cases
Use cases for n8n-meta-agent include automating complex workflows that involve multiple AI models, managing agents for specific tasks, creating and managing workflow templates, and integrating AI capabilities into existing n8n workflows.
How to use
To use n8n-meta-agent, set it up alongside a running n8n instance. Utilize n8n’s API for workflow management, extend its capabilities with AI features, and integrate with the AI Starter Kit components while ensuring compatibility with n8n’s workflow format.
Key features
Key features include full MCP support, secure tool and resource management, AI model integration, real-time streaming results, interactive workflow support, agent management capabilities, template management, and local LLM integration via Ollama.
Where to use
n8n-meta-agent can be used in various fields requiring workflow automation and AI integration, such as business process automation, data processing, and intelligent decision-making systems.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is N8n Meta Agent
n8n-meta-agent is a meta-agent system designed for orchestrating n8n workflows with integration support for the Model Context Protocol (MCP). It combines n8n’s workflow automation capabilities with advanced AI features to enable intelligent automation.
Use cases
Use cases for n8n-meta-agent include automating complex workflows that involve multiple AI models, managing agents for specific tasks, creating and managing workflow templates, and integrating AI capabilities into existing n8n workflows.
How to use
To use n8n-meta-agent, set it up alongside a running n8n instance. Utilize n8n’s API for workflow management, extend its capabilities with AI features, and integrate with the AI Starter Kit components while ensuring compatibility with n8n’s workflow format.
Key features
Key features include full MCP support, secure tool and resource management, AI model integration, real-time streaming results, interactive workflow support, agent management capabilities, template management, and local LLM integration via Ollama.
Where to use
n8n-meta-agent can be used in various fields requiring workflow automation and AI integration, such as business process automation, data processing, and intelligent decision-making systems.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
n8n Meta-Agent System
A powerful meta-agent system for orchestrating n8n workflows with MCP (Model Context Protocol) integration, built with TypeScript. This system enables intelligent workflow automation by combining n8n’s extensive integration capabilities with advanced AI features.
🌟 Current Status: Alpha Development
This project is currently in active development, focusing on core functionality and n8n integration. We’re working closely with the n8n ecosystem to provide a seamless experience for workflow automation with AI capabilities.
See our ROADMAP.md for detailed development plans and DEVELOPMENT.md for technical details.
Overview
The n8n Meta-Agent system provides a bridge between n8n’s workflow automation platform and AI-powered agents. It leverages the Model Context Protocol (MCP) to enable seamless integration with various AI models and tools while maintaining security and control over your automation workflows.
Working with n8n
This system is designed to work alongside a running n8n instance:
- Uses n8n’s API for workflow management
- Extends n8n’s capabilities with AI features
- Integrates with n8n’s AI Starter Kit components
- Maintains compatibility with n8n’s workflow format
Features
-
MCP Integration
- Full Model Context Protocol support
- Secure tool and resource management
- AI model integration capabilities
- Real-time streaming results
- Interactive workflow support
-
Agent Management
- Create, start, stop, pause, and resume agents
- Template-based agent creation
- Hierarchical agent systems
- Dependency management between agents
- Resource allocation and monitoring
-
Template Management
- Create and manage workflow templates
- Version control and compatibility checking
- Parameter validation with schema enforcement
- Template marketplace integration
- Backup and restore capabilities
-
AI Capabilities
- Local LLM integration via Ollama
- Vector storage with Qdrant
- PDF processing and analysis
- Natural language task creation
- Intelligent error handling
-
Security & Monitoring
- Role-based access control
- Audit logging and tracking
- Secure credential storage
- Resource usage monitoring
- Performance analytics
-
Task Management
- Priority-based task queuing
- Task dependency resolution
- Automatic retry mechanisms
- Task status monitoring
-
Resource Management
- CPU, memory, and network resource allocation
- Automatic resource optimization
- Resource contention handling
-
State Management
- Event sourcing for state tracking
- Transaction support
- State checkpointing
- State restoration capabilities
-
Event System
- Event-based communication
- Event filtering and routing
- Event batching
- Event statistics
Prerequisites
- Node.js (v16 or higher)
- npm (v7 or higher)
- n8n instance running and accessible
- Ollama (optional, for local LLM support)
- Qdrant (optional, for vector storage)
Installation
-
Clone the repository:
git clone https://github.com/rogu3bear/n8n-meta-agent.git cd n8n-meta-agent -
Install dependencies:
npm install -
Configure n8n connection:
- Create a
.envfile in the root directory - Add your n8n configuration:
N8N_URL=http://your-n8n-instance:5678 N8N_API_KEY=your-api-key OLLAMA_URL=http://localhost:11434 # Optional QDRANT_URL=http://localhost:6333 # Optional
- Create a
Development
-
Start the development server:
npm run dev -
Run tests:
npm test -
Lint code:
npm run lint -
Format code:
npm run format
Building
-
Build the application:
npm run build -
The built application will be available in the
releasedirectory.
Usage
-
Start the application:
npm start -
Create an agent template:
const template = { id: 'ai-workflow-1', name: 'Document Processing Agent', type: 'ai-workflow', parameters: { inputDocument: { type: 'file', required: true, description: 'PDF document to process' }, outputFormat: { type: 'string', enum: ['summary', 'analysis', 'extraction'], default: 'summary' } } }; -
Create an agent from the template:
const agent = await orchestrationEngine.createAgent(template, { inputDocument: '/path/to/document.pdf', outputFormat: 'analysis' }); -
Start the agent:
await orchestrationEngine.startAgent(agent.id, 'user-1');
Architecture
The system follows a modular architecture with MCP integration:
src/ ├── main.ts # Main entry point ├── services/ # Core services │ ├── n8n/ # n8n Integration │ │ ├── N8nIntegration.ts │ │ └── TemplateParser.ts │ ├── template/ # Template Management │ │ ├── TemplateStorage.ts │ │ ├── TemplateRenderer.ts │ │ └── TemplateAPI.ts │ ├── wrapper/ # MCP Integration │ │ ├── WrapperInterface.ts │ │ └── __tests__/ │ ├── registry/ # Agent Registry │ │ ├── AgentRegistry.ts │ │ └── RegistryFactory.ts │ └── core/ # Core Services │ ├── orchestrationEngine.ts │ ├── stateManager.ts │ └── eventBus.ts ├── types/ # Type definitions └── tests/ # Test suites
Quick Start with n8n
-
Set Up n8n
# Option 1: Use n8n AI Starter Kit (Recommended) git clone https://github.com/n8n-io/ai-starter-kit cd ai-starter-kit docker-compose up -d # Option 2: Standalone n8n npm install n8n -g n8n start -
Install Meta-Agent
git clone https://github.com/rogu3bear/n8n-meta-agent.git cd n8n-meta-agent npm install -
Configure Integration
cp .env.example .env # Edit .env with your n8n details -
Start Development
npm run dev
Usage Examples
Creating an AI-powered Workflow
const template = {
id: 'ai-workflow-1',
name: 'Document Processing Agent',
type: 'ai-workflow',
parameters: {
inputDocument: {
type: 'file',
required: true,
description: 'PDF document to process'
},
outputFormat: {
type: 'string',
enum: ['summary', 'analysis', 'extraction'],
default: 'summary'
}
}
};
const agent = await orchestrationEngine.createAgent(template, {
inputDocument: '/path/to/document.pdf',
outputFormat: 'analysis'
});
Using MCP Tools
const mcpTool = await wrapperInterface.createTool({
name: 'documentAnalyzer',
description: 'Analyzes documents using AI',
inputSchema: {
type: 'object',
properties: {
document: { type: 'string' },
analysisType: { type: 'string' }
}
}
});
const result = await mcpTool.execute({
document: documentContent,
analysisType: 'sentiment'
});
Integration Examples
Basic Workflow Creation
// Create a simple n8n workflow with AI capabilities
const workflow = await n8nIntegration.createWorkflow({
name: 'AI-Powered Data Processing',
nodes: [
{
type: 'n8n-nodes-base.httpRequest',
parameters: {
url: 'https://api.example.com/data'
}
},
{
type: 'n8n-nodes-base.function',
parameters: {
functionCode: 'return await $ai.analyze(items[0].json);'
}
}
]
});
Using AI Templates
// Create an AI-powered workflow from a template
const template = await templateStorage.getTemplate('document-analysis');
const workflow = await n8nIntegration.createFromTemplate(template, {
inputDocument: '/path/to/document.pdf',
analysisType: 'sentiment'
});
Contributing
We welcome contributions! Please see our Contributing Guide for details. Key areas for contribution:
- Additional AI model integrations
- New workflow templates
- Performance improvements
- Documentation enhancements
- Bug fixes and testing
Resources
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- n8n - Workflow automation platform
- Model Context Protocol - AI integration protocol
- Ollama - Local LLM platform
- Qdrant - Vector database
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










