Aller au contenu principal

Integrations

Indagis Agent connects to external systems for AI inference, tool servers, IDE workflows, programmatic access, and more. These integrations extend what Indagis can do and where it can run.

:::tip Start here If you only have time to set up one integration, set up Indagis Cloud — a single OAuth login covers 300+ models plus the four Tool Gateway tools (web search, image generation, TTS, and browser automation). :::

AI Providers & Routing

Indagis supports multiple AI inference providers out of the box. Use indagis model to configure interactively, or set them in config.yaml.

  • AI Providers — OpenRouter, Anthropic, OpenAI, Google, and any OpenAI-compatible endpoint. Indagis auto-detects capabilities like vision, streaming, and tool use per provider.
  • Provider Routing — Fine-grained control over which underlying providers handle your OpenRouter requests. Optimize for cost, speed, or quality with sorting, whitelists, blacklists, and explicit priority ordering.
  • Fallback Providers — Automatic failover to backup LLM providers when your primary model encounters errors. Includes primary model fallback and independent auxiliary task fallback for vision, compression, and web extraction.

Tool Servers (MCP)

  • MCP Servers — Connect Indagis to external tool servers via Model Context Protocol. Access tools from GitHub, databases, file systems, browser stacks, internal APIs, and more without writing native Indagis tools. Supports both stdio and SSE transports, per-server tool filtering, and capability-aware resource/prompt registration.

Web Search Backends

The web_search and web_extract tools support eight backend providers, configured via config.yaml or indagis tools:

BackendEnv VarSearchExtractCrawl
Firecrawl (default)FIRECRAWL_API_KEY
SearXNGSEARXNG_URL
Brave (free tier)BRAVE_SEARCH_API_KEY
DuckDuckGo (ddgs)(none)
ExaEXA_API_KEY
ParallelPARALLEL_API_KEY
xAIXAI_API_KEY

Quick setup example:

web:
backend: firecrawl # firecrawl | searxng | brave-free | ddgs | tavily | keenable | exa | parallel | xai

If web.backend is not set, the backend is auto-detected from whichever API key is available. Self-hosted Firecrawl is also supported via FIRECRAWL_API_URL.

Browser Automation

Indagis includes full browser automation with multiple backend options for navigating websites, filling forms, and extracting information:

  • Browser Use Cloud — Managed Chromium with stealth, residential proxies, CAPTCHA solving, and reusable browser profiles
  • Browserbase — Alternative cloud browser provider with managed browsers, anti-bot tooling, CAPTCHA solving, and residential proxies
  • Local Chromium-family CDP — Connect to your running Chrome, Brave, Chromium, or Edge browser using /browser connect
  • Local Chromium — Headless local browser via the agent-browser CLI

See Browser Automation for setup and usage.

Voice & TTS Providers

Text-to-speech and speech-to-text across all messaging platforms:

ProviderQualityCostAPI Key
Edge TTS (default)GoodFreeNone needed
ElevenLabsExcellentPaidELEVENLABS_API_KEY
OpenAI TTSGoodPaidVOICE_TOOLS_OPENAI_KEY
MiniMaxGoodPaidMINIMAX_API_KEY
xAI TTSGoodPaidXAI_API_KEY
NeuTTSGoodFreeNone needed

Speech-to-text supports eight providers: local faster-whisper (free, runs on-device), a local command wrapper, Groq, OpenAI Whisper API, Mistral, xAI, ElevenLabs Scribe, and DeepInfra. Voice message transcription works across Telegram, Discord, WhatsApp, and other messaging platforms. See Voice & TTS and Voice Mode for details.

IDE & Editor Integration

  • IDE Integration (ACP) — Use Indagis Agent inside ACP-compatible editors such as VS Code, Zed, and JetBrains. Indagis runs as an ACP server, rendering chat messages, tool activity, file diffs, and terminal commands inside your editor.

Programmatic Access

  • API Server — Expose Indagis as an OpenAI-compatible HTTP endpoint. Any frontend that speaks the OpenAI format — Open WebUI, LobeChat, LibreChat, NextChat, ChatBox — can connect and use Indagis as a backend with its full toolset.

Memory & Personalization

  • Built-in Memory — Persistent, curated memory via MEMORY.md and USER.md files. The agent maintains bounded stores of personal notes and user profile data that survive across sessions.
  • Memory Providers — Plug in external memory backends for deeper personalization. Eight providers are supported: Honcho (dialectic reasoning), OpenViking (tiered retrieval), Mem0 (cloud extraction), Hindsight (knowledge graphs), Holographic (local SQLite), RetainDB (hybrid search), ByteRover (CLI-based), and Supermemory.

Messaging Platforms

Indagis runs as a gateway bot on 27+ messaging platforms, all configured through the same gateway subsystem:

See the Messaging Gateway overview for the platform comparison table and setup guide.

The big platforms have a canonical "create your bot/app" URL, and some accept parameters that pre-open the right form. Skip the console-hunting and go straight there:

PlatformDirect linkWhat it opens
Telegramt.me/BotFatherChat with BotFather — send /newbot to mint a bot token
Discorddiscord.com/developers/applications?new_application=trueDeveloper Portal with the New Application dialog pre-opened
Slackapi.slack.com/apps?new_app=1The Create New App dialog — pick From an app manifest and paste the manifest indagis slack manifest --agent-view generates
LINEdevelopers.line.biz/consoleLINE Developers Console for creating a Messaging API channel
Feishu/Larkopen.feishu.cn/appFeishu open-platform console for creating a custom app

Each platform's setup page walks through what to do once you're there.

Collaboration Workspaces

  • Buzz — Block's Nostr-based human+agent workspace. Three integration paths: Buzz Desktop spawns Indagis as a managed ACP runtime, the buzz-acp relay bridge hosts a Indagis identity server-side, or the native gateway platform joins Buzz channels with full Indagis memory/skills/approvals/cron. The overview page compares all three.

Home Automation

  • Home Assistant — Control smart home devices via four dedicated tools (ha_list_entities, ha_get_state, ha_list_services, ha_call_service). The Home Assistant toolset activates automatically when HASS_TOKEN is configured.

Plugins

  • Plugin System — Extend Indagis with custom tools, lifecycle hooks, and CLI commands without modifying core code. Plugins are discovered from ~/.indagis/plugins/, project-local .indagis/plugins/, and pip-installed entry points.
  • Build a Plugin — Step-by-step guide for creating Indagis plugins with tools, hooks, and CLI commands.

Training & Evaluation

  • Batch Processing — Run the agent across hundreds of prompts in parallel, generating structured ShareGPT-format trajectory data for training data generation or evaluation.