Helping robots build Airbyte connectors.
A Model Context Protocol (MCP) server for Airbyte connector building operations, enabling AI ownership of the complete connector development lifecycle - from manifest validation to automated testing and PR creation.
- Manifest Operations: Validate and resolve connector manifests
- Stream Testing: Test connector stream reading capabilities
- Configuration Management: Validate connector configurations
- Test Execution: Run connector tests with proper limits and constraints
To use with MCP clients like Claude Desktop, add the following configuration:
{
"mcpServers": {
"connector-builder-mcp--stable": {
"command": "uvx",
"args": [
"airbyte-connector-builder-mcp",
]
}
}
}
{
"mcpServers": {
"connector-builder-mcp--dev-main": {
"command": "uvx",
"args": [
"--from=git+https://github.com/airbytehq/connector-builder-mcp.git@main",
"airbyte-connector-builder-mcp"
]
}
}
}
{
"mcpServers": {
"connector-builder-mcp--local-dev": {
"command": "uv",
"args": [
"run",
"--project",
"/path/to/repos/connector-builder-mcp",
"airbyte-connector-builder-mcp"
]
}
}
}
For VS Code users with the MCP extension, use the included configuration in .vscode/mcp.json
.
- Contributing Guide - Development setup, workflows, and contribution guidelines
- Testing Guide - Comprehensive testing instructions and best practices