airbyte_ops_mcp

Airbyte Admin MCP - MCP and API interfaces that let the agents do the admin work.

 1"""Airbyte Admin MCP - MCP and API interfaces that let the agents do the admin work.
 2
 3.. include:: ../../../README.md
 4"""
 5
 6from importlib.metadata import PackageNotFoundError, version
 7
 8from airbyte_ops_mcp import (
 9    airbyte_repo,
10    cli,
11    cloud_admin,
12    connection_config_retriever,
13    constants,
14    mcp,
15    prod_db_access,
16    registry,
17    regression_tests,
18)
19
20try:
21    __version__ = version("airbyte-internal-ops")
22except PackageNotFoundError:
23    __version__ = "0.0.0"
24
25
26def hello() -> str:
27    """Return a friendly greeting."""
28    return "Hello from airbyte-internal-ops!"
29
30
31__all__ = [
32    "__version__",
33    "airbyte_repo",
34    "cli",
35    "cloud_admin",
36    "connection_config_retriever",
37    "constants",
38    "hello",
39    "mcp",
40    "prod_db_access",
41    "registry",
42    "regression_tests",
43]
__version__ = '0.0.0.post1.dev0+9f199d1'
def hello() -> str:
27def hello() -> str:
28    """Return a friendly greeting."""
29    return "Hello from airbyte-internal-ops!"

Return a friendly greeting.