Skip to content

Commit eddb399

Browse files
docs: rename PyAirbyte MCP references (#1031)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent 2f223e7 commit eddb399

5 files changed

Lines changed: 16 additions & 15 deletions

File tree

airbyte/_util/meta.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ def set_mcp_mode() -> None:
4444
proper detection and prevent interactive prompts.
4545
"""
4646
print(
47-
f"Running in MCP mode: PyAirbyte MCP v{get_version()} (Python v{python_version()})",
47+
"Running in MCP mode: "
48+
f"Airbyte Replication MCP v{get_version()} (Python v{python_version()})",
4849
file=sys.stderr,
4950
)
5051
global _MCP_MODE_ENABLED

airbyte/mcp/__init__.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
22

3-
r"""***PyAirbyte MCP Server - Model Context Protocol Integration***
3+
r"""***Airbyte Replication MCP Server - Model Context Protocol Integration***
44
55
> **NOTE:**
66
> This MCP server implementation is experimental and may change without notice between minor
77
> versions of PyAirbyte. The API may be modified or entirely refactored in future versions.
88
9-
The PyAirbyte MCP (Model Context Protocol) server provides a standardized interface for
10-
managing Airbyte connectors through MCP-compatible clients. This experimental feature
11-
allows you to list connectors, validate configurations, and run sync operations using
12-
the MCP protocol.
9+
The Airbyte Replication MCP (Model Context Protocol) server provides a standardized interface
10+
for managing Airbyte connectors through MCP-compatible clients. This PyAirbyte-powered
11+
experimental feature allows you to list connectors, validate configurations, and run sync
12+
operations using the MCP protocol.
1313
14-
## Getting Started with PyAirbyte MCP
14+
## Getting Started with Airbyte Replication MCP
1515
16-
To get started with the PyAirbyte MCP server, follow these steps:
16+
To get started with the Airbyte Replication MCP server, follow these steps:
1717
1818
1. Create a Dotenv secrets file.
1919
2. Register the MCP server with your MCP client.
2020
3. Test the MCP server connection using your MCP client.
2121
2222
### Step 1: Generate a Dotenv Secrets File
2323
24-
To get started with the PyAirbyte MCP server, you will need to create a dotenv
24+
To get started with the Airbyte Replication MCP server, you will need to create a dotenv
2525
file containing your Airbyte Cloud credentials, as well as credentials for any
2626
third-party services you wish to connect to via Airbyte.
2727
@@ -113,8 +113,8 @@
113113
114114
## Airbyte Cloud MCP Server Safety
115115
116-
The PyAirbyte MCP server supports environment variables to control safety and access levels for
117-
Airbyte Cloud operations.
116+
The Airbyte Replication MCP server supports environment variables to control safety and access
117+
levels for Airbyte Cloud operations.
118118
119119
**Important:** The below settings only affect Cloud operations; local operations are not affected.
120120

airbyte/mcp/prompts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
2-
"""MCP prompt definitions for the PyAirbyte MCP server.
2+
"""MCP prompt definitions for the Airbyte Replication MCP server.
33
44
This module defines prompts that can be invoked by MCP clients to perform
55
common workflows.

docs/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ To pin your GitHub actions, you can use the [pinact](https://github.com/suzuki-s
7575
pinact run [optional_file]
7676
```
7777

78-
## Contributing to the PyAirbyte MCP Server
78+
## Contributing to the Airbyte Replication MCP Server
7979

8080
The Airbyte MCP server is part of the PyAirbyte project. Contributions are welcome!
8181

@@ -118,7 +118,7 @@ In your MCP config, you can test your development updates using `uv` as the entr
118118
119119
### Testing MCP Tools
120120

121-
The easiest way to test PyAirbyte MCP tools during development is using the built-in Poe tasks.
121+
The easiest way to test Airbyte Replication MCP tools during development is using the built-in Poe tasks.
122122

123123
```bash
124124
poe mcp-tool-test <tool_name> '<json_args>'

scripts/generate_mcp_markdown.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# Copyright (c) 2026 Airbyte, Inc., all rights reserved.
3-
"""Generate Markdown documentation for the PyAirbyte MCP server.
3+
"""Generate Markdown documentation for the Airbyte Replication MCP server.
44
55
Runs `fastmcp inspect` against the default `airbyte/mcp/server.py:app` spec
66
(override with `--server-spec`) to obtain the full FastMCP protocol surface

0 commit comments

Comments
 (0)