TechEcosystem

Modified

The model is the brain. The ecosystem is hands and eyes.

An has trained on enormous amounts of text and data. It can reason, write code, translate, summarize — essentially across any topic imaginable.

What it can't do is act in your reality — open the calendar, read today's news, click around in a browser. For that it needs tools. The ecosystem is the collection of those tools, and the five verbs to the right cover most of it.

No-code → Low-code → Code

Automation platforms let you connect , databases and web services without writing everything from scratch. and are no-code options for fast . (see the Agents page) is open source with full code control.

Zapier

🇺🇸 US storage · Paid service

The world's largest automation platform. 6,000+ . The easiest way to connect AI to existing tools like Gmail, Slack and CRM systems. Glue layer, no code required.

Make

🇺🇸 US storage · Paid service

Visual automation platform with more powerful flow control than Zapier. Supports loops, iterators and complex data transformations. Popular among technical no-coders.

USB for agents

is a standard protocol for tools. Instead of every AI app building its own integrations to Slack, GitHub and the filesystem, there is a shared interface. Plug in an MCP server — the agent gets the superpower instantly. Open standard, every LLM can implement it.

Playwright MCP

Open Source

Browser control via MCP. Your can navigate pages, click buttons and extract data, just like a human. From .

Filesystem MCP

Open Source

Gives local agents secure access to the filesystem via MCP. Read, write and search files without exposing the entire system. From Anthropic.

GitHub MCP

Open Source

Repo operations via MCP: create issues, review pull requests, read code. Connects your agent directly to GitHub's API with a standardized interface.

Fetch MCP

Open Source

HTTP requests as an MCP tool. The agent can fetch web pages and responses without an external browser. The simplest way to give an agent access to the web. From Anthropic.

Memory MCP

Open Source

Persistent memory via . The agent can store and recall facts across sessions. A core building block for agents that need to learn over time. From Anthropic.

Tip

An agent without tools is just a chat.

Fresh answers, not training data

A model only knows what it was trained on. Search engines give the agent real-time access — facts from today, with sources. Most are based in the US. If you handle European user data: is EU-native and can run on your own infrastructure.

Tavily

🇺🇸 US storage · Paid service

The default for AI agents. Optimized for LLM responses with structured results and source citations. The easiest to integrate into agent pipelines.

Brave Search

🇺🇸 US storage · Paid service

Independent search index, not dependent on or Bing. Good for agents that need unfiltered search results without personalization.

Exa

🇺🇸 US storage · Paid service

optimized for pipelines. Returns full documents, not just snippets. Excellent when your agent needs deeper context.

Perplexity API

🇺🇸 US storage · Paid service

Search and summarization in a single API call. The agent gets an answer with sources, not raw search results that need to be processed.

SearXNG EU choice

🇪🇺 Local · Open Source · Self-hosted

Self-hosted meta-search that aggregates Google, Bing and 70+ other sources. You own your data. Run it on your own infrastructure — no third party sees your queries.

Web page → clean text

The difference from search: a scraper fetches the whole page and turns it into clean text the agent can read. Think policy documents, price lists, product data. Firecrawl is the most agent-friendly — -rendered pages and PDFs just work.

Firecrawl

Open Source · SaaS available

Turns any URL into clean Markdown that LLMs can read. Handles JavaScript-rendered pages, auth walls and PDFs. The most agent-friendly in its class.

Apify

🇺🇸 US storage · SaaS

A marketplace of ready-made scrapers ("Actors") for Amazon, LinkedIn, TikTok and hundreds of other sites. Runs in the cloud — no servers of your own.

Crawlee

Open Source

A crawling library in Node.js from Apify. and Cheerio integration, intelligent queue management and retry logic. For when you want to build your own scrapers with full control.

BeautifulSoup / requests

Open Source · Python

standard for simple HTML parsing. The lowest abstraction level, full control, zero magic. The starting point for any Python agent that needs to extract data from web pages.

When there is no API

Half the web has no API. Web agents drive a real browser — clicking, filling forms, logging in. Browserbase gives the agent a cloud Chrome without you having to host it. Stagehand takes natural language: "click Log in" works without CSS selectors.

Browserbase

🇺🇸 US storage · Paid service

Cloud-hosted browser for agents. The API drives a real Chrome instance — perfect when you do not want to manage infrastructure yourself.

Stagehand

Open Source

Built on top of Playwright. Lets an LLM drive the browser with natural language — "click Log in" works without CSS selectors.

Puppeteer

Open Source

Google's classic browser automation for Node.js. Works well for simpler scraping and click automation.