🏴‍☠️ Overview

Adds a community source spec for n8n — the leading extensible workflow automation platform.

This source allows agents and developers to query their automation platform like a database, enabling powerful cross-source JOINs (e.g., correlating failed n8n workflows with PagerDuty incidents or GitHub deployments).

🗄️ Tables Implemented

🛠️ Functions

🚀 Advanced Features Showcased

💻 Demo Queries

1. List active workflows with their tags:

SELECT name, tag_names, node_count, updated_at
FROM n8n.workflows
WHERE active = true
ORDER BY updated_at DESC;