
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
n8n-nodes-mautic-advanced
Advanced tools
Enhanced n8n node for Mautic with comprehensive API coverage including tags, campaigns, categories, and advanced contact management
Enhanced n8n node for Mautic with comprehensive API coverage including tags, campaigns, categories, notifications, and advanced contact management.
This enhanced version extends the standard n8n Mautic node with:
npm install n8n-nodes-mautic-advanced
Clone this repository:
git clone https://github.com/msoukhomlinov/n8n-nodes-mautic-advanced.git
cd n8n-nodes-mautic-advanced
Install dependencies:
npm install
Build the node:
npm run build
Link to your n8n installation:
npm link
cd /path/to/your/n8n/installation
npm link n8n-nodes-mautic-advanced
Advanced filtering for Contact > Get Many operations:
Filter contacts by Do Not Contact status:
Choose which fields to return for Contact operations:
Automatic date formatting for known date fields:
// Contact Create operation
{
"email": "john.doe@example.com",
"firstName": "John",
"lastName": "Doe",
"additionalFields": {
"tags": ["customer", "vip"],
"company": "Example Corp",
"phone": "+1234567890"
}
}
// Contact Get Many with Where filter
{
"where": {
"conditions": [
{
"col": "email",
"expr": "neq",
"val": ""
},
{
"col": "date_added",
"expr": "gte",
"val": "2024-01-01"
}
]
}
}
// Segment Email operation
{
"segmentId": "123",
"emailId": "456",
"options": {
"sendToNewOnly": true
}
}
# Install dependencies
npm install
# Build the node
npm run build
# Watch for changes (development)
npm run dev
# Check for linting errors
npm run lint
# Fix linting errors
npm run lint:fix
# Format code
npm run format
├── credentials/ # Authentication credentials
├── nodes/ # Node implementations
│ └── MauticAdvanced/ # Main node files
├── dist/ # Compiled output
├── package.json # Project configuration
└── README.md # This file
Cause: Missing Options parameter in node definition Solution: Update to latest version (0.3.2+) which includes all required Options parameters
Cause: Incorrect credentials or URL Solution:
Cause: Incorrect date format Solution: Use YYYY-MM-DD format for date filters
Cause: Large datasets causing timeouts Solution: Use "Return All" option or set appropriate limits
If you find this node helpful and want to support its ongoing development, you can buy me a coffee:
Your support helps maintain this project and develop new features.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Enhanced n8n node for Mautic with comprehensive API coverage including tags, campaigns, categories, and advanced contact management
The npm package n8n-nodes-mautic-advanced receives a total of 20 weekly downloads. As such, n8n-nodes-mautic-advanced popularity was classified as not popular.
We found that n8n-nodes-mautic-advanced demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.