Most EU AI chats ship a fixed connector catalog. LangDock has its workflow library plus standard integrations. Mistral Le Chat Enterprise has 40+ pre-built MCP connectors. Microsoft 365 Copilot has Microsoft Graph plus Microsoft-curated partners. The catalog is the product. Six months later, the catalog is still 40-something connectors, because every new one requires the vendor's engineering team to build, test, and ship it. If your buying brief includes we need to integrate with our internal billing API and our custom Salesforce instance and three vendor portals nobody else uses, the prebuilt-only model fails.

Teamo AI takes a different approach: a maintenance-free plugin system with an agentic enricher that discovers all tools from any API's documentation in 5 minutes. The catalog is not the product, the runtime is. New integration requested via chat command, the enricher reads the API docs, probes endpoints with realistic payloads, fixes its mistakes, validates the schema, and writes everything back to the database manifest. The result is a working integration with all the API's tools accessible inside the chat. This article explains how the architecture works, why it matters for procurement, and what to ask vendors during evaluation. For the broader vendor landscape, see our EU ChatGPT alternative for enterprise comparison.

5 minutesagentic enricher discovers all tools from any documented API
3 modesHTTP proxy + custom computation plugins + MCP plugin system
40+Mistral pre-built MCP connectors (catalog cap)
3 layersof maintenance-free in Teamo plugin system (runtime hints, enricher manifest fixes, lesson safety nets)

Why Prebuilt-Only Connector Catalogs Hit a Ceiling

The prebuilt catalog model has a hard structural problem: vendor engineering capacity. Every new connector requires the vendor team to read the upstream API docs, write a connector definition, test edge cases, ship it, and maintain it as the upstream API changes. For the top 40-50 enterprise APIs (Slack, GitHub, Notion, Asana, Snowflake, Salesforce, Atlassian, Box, Microsoft Graph), that investment makes commercial sense. For the niche tools (your internal billing API, your custom Salesforce instance, your industry-specific vendor portals, your home-grown HR tool), it does not. The vendor will never prioritize building those connectors.

The practical result: organizations with significant niche integration needs end up writing their own connectors against the vendor's API, or running parallel automation tools (Zapier, n8n, Make), or simply accepting that some workflows cannot be reached from AI chat. Each of these has cost, friction, or capability gaps. None of them solves the underlying problem: the prebuilt catalog cannot grow to your organization's actual surface area. For the broader buying-brief framing, see our DPA checklist for EU AI chat vendors and the EU ChatGPT alternative comparison.

One more compounding effect: every successful integration installed via the AI integration assistant extends a shared catalog that all teamazing customers can pull from with one click. When one customer integrates a niche tool — PaperCut printer management, an internal billing API, an industry-specific CRM — that integration becomes available to every other customer next month. The catalog grows by network effect, not by vendor engineering investment. Competitors with prebuilt-only catalogs structurally cannot match this because their catalog is engineering output, not customer success output.

How Teamo's Maintenance-Free Plugin System Works

Three execution modes work together. HTTP Proxy is the common case: a manifest in the database describes endpoints, methods, headers, body templates, and auth scheme. The gateway calls them. No code is generated. Custom-built plugins handles computation-heavy plugins (e.g., parsing a CSV with a specific library) where the AI writes Go code via the AI coder assistant, the platform compiles it to a binary and runs it as a subprocess. MCP (Model Context Protocol) supports JSON-RPC over stdio or SSE for external MCP servers, useful when the vendor already ships an MCP server.

For each new integration, the agentic enricher (a specialized character with its own SOUL and 5 exclusive tools) does the work of building and validating the manifest:

1. Quick research establishes OAuth config, base URL, deployment model in roughly 3 seconds via a Perplexity query
2. Seed manifest with zero tools is generated and persisted to the database
3. Enricher loop starts: read API docs, propose tools, probe endpoints with realistic payloads, parse error responses, fix mistakes, validate schema, repeat until 0 errors
4. Done typically in 5 minutes for a normal API; complex APIs with many endpoints can take 10-15 minutes
5. Self-heal hooks activate at runtime: when an API call fails, the hook system captures the error, classifies it, and either applies a deterministic fix or escalates to the enricher to repair the manifest

The result is that the catalog grows with your organization's actual needs, not the vendor's roadmap priorities.

The architectural distinction matters more than the headline number. A vendor with 40 prebuilt connectors and no runtime will always be at 40 (until they add the 41st through engineering investment). A vendor with a real plugin system is at 40 plus everything your team adds via chat command, which compounds. Six months in, the runtime model has typically discovered 60-80 working integrations specific to your stack, while the prebuilt model is still at 40-something.

Plugin Runtime vs Prebuilt Catalog: Side by Side

CapabilityTeamo AI plugin systemPrebuilt catalogs (Mistral, LangDock, Microsoft Copilot)

New integration setup

Chat command, 5-15 min, agentic enricherVendor engineering ticket, weeks-months

Long-tail API support

Any documented APIVendor catalog only

Internal/custom APIs

HTTP proxy + custom MCPCustom dev work required

API change handling

Self-heal hooks + enricher repair modeWait for vendor update

Computation plugins

Custom-built plugins via AI coder assistantNot supported

MCP server support

third-party MCP servers Mistral); No (others

Catalog growth pattern

Compounds with your usageCapped at vendor roadmap

Effective integration count after 6 months

60-80 (typical)40-50 (vendor catalog only)

Score your integration needs in 7 minutes

AI governance assessment maps your integration surface area against vendor catalogs. Tells you whether prebuilt-only is sufficient or runtime architecture matters. EU-hosted, free.

Try It Free

What to Ask Vendors During Integration Evaluation

1

1. How long does it take to add an integration not in your catalog?

2

2. Can the AI itself install a new integration without your engineering team?

3

3. What happens when an integrated API changes its schema?

4

4. Can I use a custom internal API or only public services?

5

5. What happens to integrations if I cancel the contract?

Run a 12-minute AI Readiness Assessment

Maps which workflows in your team would benefit most from AI integration. Use the result to scope your integration shortlist before vendor pitches.

Try It Free

The architecture is the moat, not the catalog

Prebuilt connector catalogs win the marketing comparison and lose the long game. 40+ MCP connectors looks impressive in a sales demo. Six months in, the catalog is still 40-something while your team's actual integration needs have grown to 60-80.

Maintenance-free plugin systems compound with usage. Teamo AI's enricher discovers all tools from any documented API in 5 minutes. The catalog grows with your needs, not the vendor's roadmap. For niche or internal-API-heavy organizations, this is the difference between AI that reaches your actual workflows and AI that only reaches what the vendor has prebuilt.

Ask the architectural questions during evaluation: how long to add a non-catalog integration, can the AI install it without engineering, what happens on schema change, can I use internal APIs, what happens on contract cancellation. The answers reveal which architecture is in place, regardless of how the vendor markets the product.

Inside the 5-Phase Install Pipeline

Connect Notion in 2 minutes sounds like marketing. The implementation is more interesting. When a user says can we connect Notion, the AI calls a single tool (install_integration) and an agentic pipeline runs through five phases in roughly 120 seconds, with no IT ticket and no human-edited OpenAPI spec.

The AI does not pattern-match on the German word anbinden or the English connect. It sees the user's message, reads its tool catalog (each tool described in JSON with behavior rules), and decides install_integration is the right call. Schema rules steer it: DEFAULT tool for installing external services. Never specify tools, base_url, or oauth_config (auto-discovered). The discipline is in the schema, not in code.

What happens next is the same orchestrator pattern that drives every agentic character on the platform: a sandboxed agent session with exclusive tools, a strict step budget, automatic retry on transient failures, and a structured response back to the user when the work is done. The pipeline below is the production code path, not a marketing diagram.

1

Phase 1: Check for existing integration

Does this user already have a Notion plugin installed? If yes, return early without re-installing. Prevents accidental double-installs and preserves the existing OAuth credentials.

2

Phase 2: Quick research (single Perplexity query)

One LLM-backed search asks three specific questions: what is the base URL, what is the auth model (OAuth 2.0, API key, basic auth), is it hosted or instance-specific (Jira Server vs Atlassian Cloud). Roughly 3 seconds and 1 cent.

3

Phase 3: Instance-specific URL gate (only when needed)

If the service is self-hosted, the handler returns early asking the user for their URL and caches the research data. The user replies with the URL, the handler is re-called, the cache skips re-research. Avoids paying for research twice.

4

Phase 4: Seed manifest in MySQL (zero tools yet)

Generate a minimal manifest with name, base URL, OAuth config if applicable, and zero tools. Persist to MySQL. The plugin technically exists now but cannot do anything yet. This is the foundation the enricher builds on.

5

Phase 5: Plugin-enricher agent discovers all tools

RunPluginEnricher launches a sandboxed agentic character with 5 exclusive tools (read manifest, search docs, write tool definitions, actually probe the API with real HTTP, validate). The agent iterates read-search-update-validate-fix-probe until zero validation errors. Typical run: 47 tools discovered in ~120 seconds. WebSocket events stream progress to the UI.