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 airbyte_ops_mcp import ( 7 airbyte_repo, 8 cli, 9 cloud_admin, 10 connection_config_retriever, 11 constants, 12 mcp, 13 prod_db_access, 14 registry, 15 regression_tests, 16) 17 18__version__ = "0.1.0" 19 20 21def hello() -> str: 22 """Return a friendly greeting.""" 23 return "Hello from airbyte-internal-ops!" 24 25 26def get_version() -> str: 27 """Return the current version.""" 28 return __version__ 29 30 31__all__ = [ 32 "__version__", 33 "airbyte_repo", 34 "cli", 35 "cloud_admin", 36 "connection_config_retriever", 37 "constants", 38 "get_version", 39 "hello", 40 "mcp", 41 "prod_db_access", 42 "registry", 43 "regression_tests", 44]
__version__ =
'0.1.0'
def
get_version() -> str:
Return the current version.
def
hello() -> str:
22def hello() -> str: 23 """Return a friendly greeting.""" 24 return "Hello from airbyte-internal-ops!"
Return a friendly greeting.