├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── assets └── iceberg-logo.svg ├── iceberg_mcp ├── __init__.py ├── iceberg_config.py └── iceberg_server.py ├── pyproject.toml └── uv.lock /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryft-io/iceberg-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryft-io/iceberg-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryft-io/iceberg-mcp/HEAD/README.md -------------------------------------------------------------------------------- /assets/iceberg-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryft-io/iceberg-mcp/HEAD/assets/iceberg-logo.svg -------------------------------------------------------------------------------- /iceberg_mcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iceberg_mcp/iceberg_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryft-io/iceberg-mcp/HEAD/iceberg_mcp/iceberg_config.py -------------------------------------------------------------------------------- /iceberg_mcp/iceberg_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryft-io/iceberg-mcp/HEAD/iceberg_mcp/iceberg_server.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryft-io/iceberg-mcp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryft-io/iceberg-mcp/HEAD/uv.lock --------------------------------------------------------------------------------