Airweave — Context Retrieval Layer for AI Agents, 50+ Integrations
Open-source context retrieval layer connecting AI agents to 50+ apps including Notion, Slack, GitHub, and Jira. Unified search API with MCP support.
这个资产会安全暂存
这个资产会先安全暂存。复制的指令会要求 Agent 读取暂存文件,并在激活脚本、MCP 配置或全局配置前先确认。
npx -y tokrepo@latest install 1abeff10-d6be-45f3-b47c-f5998d7a08a4 --target codex先暂存文件;激活前需要读取暂存 README 和安装计划。
What it is
Airweave is an open-source context retrieval layer that connects AI agents and RAG systems to 50+ applications including Notion, Slack, GitHub, Jira, Salesforce, and Google Docs. It continuously syncs data from these sources and exposes everything through a unified search API. You can query via Python SDK, TypeScript SDK, REST API, or MCP protocol.
Airweave targets teams building AI agents that need access to company data across multiple SaaS tools. It serves as the single infrastructure layer between your data sources and your AI workflows.
How it saves time or tokens
Instead of building and maintaining individual connectors for each data source, Airweave provides pre-built integrations with continuous synchronization. The unified search API means your agent queries one endpoint regardless of whether the data lives in Notion, Slack, or Jira. MCP support lets AI coding tools like Claude Code access your company knowledge directly.
How to use
- Self-host with Docker:
git clone https://github.com/airweave-ai/airweave && cd airweave && ./start.sh. - Connect your data sources through the web dashboard or API.
- Query the unified search API from your AI agent or RAG pipeline.
Example
from airweave import AirweaveClient
client = AirweaveClient(api_key='your-key')
# Search across all connected sources
results = client.search(
query='quarterly revenue report Q1 2026',
sources=['notion', 'google-docs', 'slack'],
limit=10
)
for result in results:
print(f'{result.source}: {result.title}')
print(f' {result.snippet}')
Related on TokRepo
- AI Tools for RAG -- explore retrieval-augmented generation tools and pipelines
- AI Tools for Agents -- discover tools for building context-aware AI agents
Common pitfalls
- Initial sync of large data sources (e.g., thousands of Notion pages) takes time; plan for an indexing period before querying.
- OAuth tokens for connected sources expire; configure automatic refresh or monitor for authentication failures.
- Search relevance depends on the quality of the underlying embeddings; test with representative queries before deploying to production.
常见问题
Airweave supports 50+ integrations including Notion, Slack, GitHub, GitLab, Jira, Confluence, Salesforce, Google Docs, Google Sheets, Airtable, Discord, Gmail, HubSpot, and more.
Yes. Airweave exposes its search functionality as an MCP server, so AI coding tools like Claude Code can access your company data directly during development sessions.
Yes. Airweave provides Docker-based self-hosting with a single startup script. All data stays on your infrastructure.
Airweave continuously syncs data from connected sources on a configurable schedule. Changes in source applications are reflected in search results after the next sync cycle.
The open-source version is free. Airweave also offers a hosted version at app.airweave.ai with managed infrastructure and additional features.
引用来源 (3)
- Airweave GitHub— Airweave connects AI agents to 50+ apps with unified search
- MCP Spec— Model Context Protocol specification for tool integration
- Anthropic Docs— Retrieval-augmented generation patterns
来源与感谢
Created by airweave-ai. Licensed under MIT.
airweave — ⭐ 6,200+
讨论
相关资产
Headroom — Context Compression + MCP for Agents
Local context optimization layer: proxy/wrap/CCR + MCP tools to compress logs/files/RAG for agents; verified 1742★, pushed 2026-05-14.
Figma Context MCP — Design-to-Code for AI Agents
MCP server that gives AI coding agents access to Figma design context. Provides layout, styles, and component info so agents like Cursor and Claude Code can generate pixel-perfect code. 14K+ stars.
dbt-mcp — dbt Context MCP Server for Agents
Give AI agents structured access to dbt project context and tools (SQL, semantic layer, docs search). Ships an experimental MCP bundle in releases.
Claude Context — Semantic Code Search MCP
Claude Context is an MCP server for semantic code search, so agents can retrieve relevant code without stuffing whole folders into the prompt.