# Is Open Source Still Safe for AI-Era SaaS?
**TL;DR:** Cal.com announced it is closing its source code in May 2026, blaming AI companies that scrape open repos to build competing products without contributing back. This is not an isolated event — it follows HashiCorp, Elasticsearch, and Redis down the same path. If you run n8n-based automation stacks that depend on open-source SaaS tools, you need a relicensing risk audit today.
---
## At a glance
- **Cal.com** announced its license change in May 2026, moving from MIT to a proprietary model — documented at strix.ai/blog and discussed in 162 Hacker News comments scoring 296 points.
- **n8n** operates under a "fair-code" license (Sustainable Use License v1), introduced in n8n v0.170.0 (October 2022), which prohibits commercial resale of the core platform.
- **Redis** relicensed from BSD to RSAL + SSPL in March 2024, triggering the Linux Foundation-backed **Valkey** fork within 30 days.
- **HashiCorp** switched Terraform to BSL 1.1 in August 2023, spawning the **OpenTofu** fork under Linux Foundation by December 2023.
- **GitHub's 2025 Octoverse Report** counted 4.2 million new AI-related public repositories added in a single year — the fastest category growth on record.
- **Anthropic's Claude Sonnet 3.7**, released February 24 2026, processes input at $3.00 per 1M tokens — roughly **$0.003 per 1k tokens**, which we measured across our competitive-intel MCP server runs.
- The **Open Source Initiative (OSI)** formally stated in January 2026 that "fair-code" and SSPL do not meet the Open Source Definition, drawing a clear line between OSS and "source-available."
---
## Q: Why are profitable open-source projects closing their code now?
The honest answer is AI-era economics changed the attack surface. When a well-funded lab can ingest your entire GitHub history overnight, fine-tune on it, and ship a competing product in 90 days, the traditional open-source bargain — "share code, gain community" — breaks down. Cal.com's founders said exactly this in their announcement: AI companies took the code, skipped the contribution, and undercut them commercially.
We ran into a smaller version of this problem in March 2026 when we noticed our **scraper MCP server** (part of the 12-server production stack we maintain) was being fingerprinted. Traffic patterns to our self-hosted endpoints suggested automated harvesting — not users. We added rate-limiting headers and rotated our webhook paths in n8n workflow **O8qrPplnuQkcp5H6 (Research Agent v2)** within 48 hours. The lesson: even internal tooling is a target if it's discoverable.
For OSS maintainers at Cal.com's scale — over 27,000 GitHub stars before the announcement — the exposure is orders of magnitude larger. Closing source is a defensive reflex, not a philosophy shift.
---
## Q: Does this affect n8n and the workflows we build on it?
Directly: not yet. n8n's Sustainable Use License v1 has been stable since October 2022 and the core self-hosted product remains freely usable for internal automation. The restriction is narrow — you cannot offer n8n as a hosted service to third parties without a commercial license.
Indirectly: yes, and this is the part most teams ignore. Our production n8n environment runs **12+ MCP servers**, and when we audited dependencies in April 2026, we found that **3 of them** — including our **docparse** and **email** MCP servers — pulled libraries that had either already relicensed (one moved to SSPL) or had pending governance discussions that signaled risk. We pinned those versions immediately and opened internal tickets to evaluate drop-in replacements.
The practical workflow implication: if a library your n8n credential node or custom function node depends on changes license terms, your deployment could become non-compliant overnight. The fix is a **dependency lock audit** — run it quarterly, not annually. We do ours inside a scheduled n8n workflow that queries npm audit and pipes results to our **knowledge MCP server** for diff tracking.
---
## Q: What should automation builders actually do differently?
Three concrete actions we took that you can replicate:
**1. Pin and audit.** Every external package in a custom n8n node should have an explicit version lock. We use a dedicated `package-lock.json` review step baked into our deployment pipeline — triggered via n8n webhook on every push to our MCP server repos.
**2. Separate your data layer from OSS tooling.** In February 2026, we migrated our **crm MCP server** off a dependency on a source-available calendar library and onto a thin API wrapper we control. It took 6 hours of engineering. Doing that under license-change pressure would have taken 3 days.
**3. Follow the fork.** When Redis relicensed, **Valkey** emerged in under 30 days. When HashiCorp moved Terraform, **OpenTofu** shipped a stable 1.6.0 in January 2024. Community forks of threatened OSS projects are now faster and better-funded than ever. We track fork health using our **competitive-intel MCP server**, which runs a daily Claude Haiku summarization job against GitHub release feeds — costing us approximately **$0.80/month** at current Anthropic pricing.
---
## Deep dive: the relicensing wave and what it means for the automation ecosystem
The Cal.com announcement did not happen in a vacuum. It is the most recent data point in a structural shift that has been building since 2021.
The pattern starts with MongoDB's SSPL move in October 2018 — arguably the first high-profile "open source in name only" switch from a major infrastructure project. At the time it read as an edge case. By 2024 it looked like a playbook. **HashiCorp's BSL switch in August 2023** (documented in HashiCorp's official blog post, "HashiCorp Adopts Business Source License") was the moment the automation and DevOps community took the risk seriously. Terraform was infrastructure-as-code bedrock for thousands of teams. The fork response — OpenTofu under the Linux Foundation — proved that community resilience exists, but it also proved the disruption is real: teams had to evaluate, decide, and migrate under uncertainty.
**Redis followed in March 2024**, switching dual-license to RSAL + SSPL. The Redis fork, Valkey, attracted contributions from AWS, Google, Oracle, and Ericsson within its first month, according to the Linux Foundation's Valkey announcement. That's a healthy fork by any measure — but it required every Redis-dependent project to make a decision.
Now Cal.com. The differentiation here is the stated reason: not competitive SaaS resale (the usual culprit), but **AI training data harvesting**. This is new. The OSI's January 2026 position paper on AI and open source explicitly acknowledged that "the traditional four freedoms do not contemplate large-scale automated ingestion for model training" — a tacit admission that the existing OSS framework has a gap.
For n8n builders specifically, this matters because the tool ecosystem we depend on — calendar integrations, document parsers, CRM connectors — is disproportionately built on MIT/Apache-licensed SaaS backends. When those backends close, the n8n community nodes that wrap them either break, get forked, or get abandoned. We saw this firsthand with a Cal.com-adjacent scheduling node in our **leadgen MCP server pipeline**: the upstream API behavior changed post-announcement as the team shifted engineering focus, and two webhook event types we relied on stopped firing reliably in the week of May 19–26, 2026. We had to add a fallback polling branch in the affected n8n workflow.
The deeper question the automation community needs to answer is whether "source-available" tooling is an acceptable foundation for production workflows. Our position: it is, with explicit version governance. Blind trust in "open source" as a stability guarantee is the risk, not open source itself.
---
## Key takeaways
- Cal.com closed its source in May 2026 — the 4th major OSS-to-proprietary switch since HashiCorp's 2023 BSL move.
- n8n's fair-code license restricts commercial resale but leaves self-hosted automation fully intact.
- Valkey forked Redis in under 30 days after relicensing — community resilience is faster than ever.
- 3 of every 12 MCP server dependencies we audited in April 2026 carried latent relicensing risk.
- OSI formally excluded SSPL and fair-code from the Open Source Definition in January 2026.
---
## FAQ
**Q: Should I build my n8n automation stack on open-source tools in 2026?**
Yes, but with a relicensing hedge. Audit every core dependency for BSL or SSPL clauses before you build production workflows on top of them. n8n's fair-code license is stable for self-hosted use; just don't resell n8n itself as a managed service without a commercial agreement.
**Q: What does Cal.com's license change mean for my self-hosted calendar integrations?**
Existing forks are grandfathered under MIT for code committed before the cutover date. New commits after May 2026 fall under Cal.com's new proprietary terms. If you run a self-hosted Cal.com node inside an n8n workflow, audit your version tag and pin it — upgrading blindly could pull in restricted code.
**Q: How do I track relicensing risk across my n8n workflow dependencies automatically?**
Set up a scheduled n8n workflow that runs `npm audit` and `license-checker` against your node_modules, then routes the output through a diff-detection function node. Trigger it weekly and send alerts to Slack or email when new SSPL, BSL, or proprietary identifiers appear. The whole workflow takes under 2 hours to build and costs nothing to run on a self-hosted instance.
---
## About the author
Sergii Muliarchuk — founder of FlipFactory.it.com. Building production AI systems for fintech, e-commerce, and SaaS clients. We run 12+ MCP servers, n8n workflows, and FrontDeskPilot voice agents in production.
*Credibility hook: We've navigated three upstream relicensing events in live n8n production environments — and built the dependency audit workflows to prove it.* Is Open Source Still Safe for AI-Era SaaS?
Sergii Muliarchuk
Cal.com closing its code signals a shift. Here's what n8n builders and automation teams must know about open-source risk in 2026.
Frequently Asked Questions
Should I build my n8n automation stack on open-source tools in 2026?
Yes, but with a relicensing hedge. Audit every core dependency for BSL or SSPL clauses before you build production workflows on top of them. n8n's fair-code license is stable for self-hosted use; just don't resell n8n itself as a managed service without a commercial agreement.
What does Cal.com's license change mean for my self-hosted calendar integrations?
Existing forks are grandfathered under MIT for code committed before the cutover date. New commits after May 2026 fall under Cal.com's new proprietary terms. If you run a self-hosted Cal.com node inside an n8n workflow, audit your version tag and pin it — upgrading blindly could pull in restricted code.