What is the difference between an AI agent and an automation?
An automation runs a fixed sequence you defined. An agent decides what to do next based on what it finds. In practice most tools here do both, and the marketing rarely distinguishes them — check whether the product plans across steps or just executes a chain you drew.
Is n8n open source?
Source-available rather than open source. It ships under the Sustainable Use License, so you can read, modify and self-host it for your own business, but you cannot resell it as a competing service. That is a meaningful distinction if you are building a product on top of it.
Which is cheapest at scale?
n8n, by a wide margin, because it bills per workflow execution rather than per step. At 10,000 runs a month with eight steps each, n8n Pro cloud is around 50 dollars where Zapier lands at 250 to 400 plus. Self-hosted n8n is server costs only, though see the note above about what self-hosting actually costs.
Do I need a developer to use these?
For Zapier and Coze, no. For Copilot Studio, not strictly, though the credit model rewards someone who understands agent design. For LangChain and AutoGPT, yes — these are code. n8n sits in between: usable without code, considerably more powerful with someone comfortable in JavaScript.
Can I run agents on my own infrastructure?
n8n self-hosted, LangChain and AutoGPT all run entirely on your own machines. That is the shortlist if data cannot leave your building. Zapier, Coze and Copilot Studio are hosted services.
How much does Microsoft Copilot Studio cost?
200 dollars a month for 25,000 Copilot Credits, or pay-as-you-go through Azure at a cent per credit. Real cost depends heavily on agent design rather than on user count, so model your actual workload before committing to a tier.
Should I use a framework or a platform?
Framework if the agent is part of a product you ship and an engineer owns it. Platform if the agent automates an internal process and the person who requested it will maintain it. Choosing a framework for an ops workflow is the most common way these projects die.