Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions docs/ai-agents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Airbyte provides multiple tools to help you build data applications.
- **Airbyte Embedded Widget**: App development teams who have signed up for Airbyte Embedded and are looking to get started onboarding customers using the Embedded Widget can follow the get started guide at the bottom of this page, which will step you through a complete sample onboarding app.
- **Authentication Proxies**: Connect safely to third party APIs using Airbyte's Authentication Proxies.
- **MCP Servers**: Airbyte provides multiple MCP (Model Context Protocol) servers for different use cases:
- [**PyAirbyte MCP**](#pyairbyte-mcp): Local MCP server for managing Airbyte connectors through AI assistants.
- [**Connector Builder MCP**](#connector-builder-mcp): AI-assisted connector development - _**coming soon!**_
- [**Embedded Operator MCP**](#embedded-operator-mcp): Manage embedded configurations and pipelines.
- [**PyAirbyte MCP**](#pyairbyte-mcp): Local MCP server for managing Airbyte connectors through AI assistants. [View official docs →](https://github.com/airbytehq/PyAirbyte)
- [**Connector Builder MCP**](#connector-builder-mcp): AI-assisted connector development - _**coming soon!**_ [View official docs →](https://github.com/airbytehq/connector-builder-mcp)
- [**Embedded Operator MCP**](#embedded-operator-mcp): Manage embedded configurations and pipelines. [View official docs →](https://github.com/airbytehq/sonar)
- [**PyAirbyte Fast-Coder MCP**](#pyairbyte-fast-coder-mcp) _(deprecated)_: Remote MCP server for rapid pipeline code generation.

## Prerequisites
Expand Down Expand Up @@ -40,15 +40,25 @@ Airbyte provides multiple MCP (Model Context Protocol) servers to enable AI-assi

[The PyAirbyte MCP server](./pyairbyte-mcp.md) is a local MCP server that provides a standardized interface for managing Airbyte connectors through MCP-compatible clients. It allows you to list connectors, validate configurations, and run sync operations using the MCP protocol. This is the recommended MCP server for most use cases.

**Official Documentation**: [PyAirbyte GitHub Repository](https://github.com/airbytehq/PyAirbyte)

### Connector Builder MCP

[The Connector Builder MCP server](./connector-builder-mcp.md) (coming soon) will provide AI-assisted capabilities for building and testing Airbyte connectors using the Model Context Protocol.

**Official Documentation**: [Connector Builder MCP GitHub Repository](https://github.com/airbytehq/connector-builder-mcp)

### Embedded Operator MCP

[The Embedded Operator MCP](./embedded/operator-mcp/README.md) is a remote MCP server providing tools that enable managing embedded configurations and the resulting pipelines. Users can create connection and source templates, securely create sources, query API and File Storage sources, monitor connections and jobs, and more.

### PyAirbyte Fast-Coder MCP
**Official Documentation**: [Sonar (Embedded) GitHub Repository](https://github.com/airbytehq/sonar)

### PyAirbyte Fast-Coder MCP (Deprecated)

:::warning
This MCP server has been deprecated and is no longer actively maintained. Please use the [PyAirbyte MCP](#pyairbyte-mcp) instead.
:::

[The PyAirbyte Fast-Coder MCP](./pyairbyte-fast-coder-mcp.md) is a remote MCP server that provides the ability for data engineers to generate a data pipeline in Python using a single prompt. It is currently designed to work within Cursor, with broader support coming in the near future.

Expand Down
4 changes: 4 additions & 0 deletions docs/ai-agents/connector-builder-mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ This MCP server is under active development. Check back for updates.
## Early Access Preview

If you are an active Airbyte customer interested in early access to the **Connector Builder MCP** server, please reach out to your sales representative to request early access.

## Official Documentation

For the latest information and updates, visit the [Connector Builder MCP GitHub Repository](https://github.com/airbytehq/connector-builder-mcp).
6 changes: 5 additions & 1 deletion docs/ai-agents/embedded/operator-mcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,8 @@ To connect with Claude Code, run the following in the Claude Code CLI
/mcp reconnect sonar
```

TODO: CALLOUT: Your credentials must reference an organization that has been enabled for Airbyte Embedded. Contact [email protected] or [email protected] to enable Airbyte Embedded on your account.
TODO: CALLOUT: Your credentials must reference an organization that has been enabled for Airbyte Embedded. Contact [email protected] or [email protected] to enable Airbyte Embedded on your account.

## Official Documentation

For more information about Airbyte Embedded and the Operator MCP server, visit the [Sonar (Airbyte Embedded) GitHub Repository](https://github.com/airbytehq/sonar).
6 changes: 5 additions & 1 deletion docs/ai-agents/pyairbyte-fast-coder-mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ products: embedded
# PyAirbyte Fast-Coder MCP (Deprecated)

:::warning
The PyAirbyte Fast-Coder MCP has been deprecated and is no longer actively maintained. If you would like to see continued development on this tool, please let us know by adding feedback on the related GitHub Discussion.
**This MCP server has been deprecated and is no longer actively maintained.**

Please use the [PyAirbyte MCP](./pyairbyte-mcp.md) instead, which provides a local MCP server for managing Airbyte connectors through AI assistants.

If you would like to see continued development on this tool, please share feedback on the [PyAirbyte GitHub Discussions](https://github.com/airbytehq/PyAirbyte/discussions).
:::

The PyAirbyte Fast-Coder MCP is a remote MCP server that provides the ability for data engineers to generate a data pipeline in Python using a single prompt. It is currently designed to work within Cursor, with broader support coming in the near future.
Expand Down
Loading