Iceberg Server
БесплатноНе проверенEnables natural language querying of Apache Iceberg lakehouse by exposing typed tools for namespace discovery, table metadata inspection, snapshot history, time
Описание
Enables natural language querying of Apache Iceberg lakehouse by exposing typed tools for namespace discovery, table metadata inspection, snapshot history, time travel SQL generation, and partition pruning explanation.
README
This repository contains a local demo for a talk on using the Model Context Protocol to make an Apache Iceberg lakehouse queryable through natural language.
The demo shows how an LLM can use typed tools to discover namespaces, inspect Iceberg table metadata, reason over snapshots, generate time travel SQL, and explain partition pruning without directly reading the full catalog metadata payload.
What this demo includes
This repo has three small Python processes:
catalog_server.pyA mock Apache Iceberg REST Catalog server running on port
5001. It serves realistic table metadata for demo namespaces such assales,analytics, andraw.mcp_server.pyA lightweight MCP-style tool server running on port
5002. It wraps the catalog API and exposes typed tools for the LLM, including namespace discovery, table listing, table description, snapshot history, time travel SQL generation, and partition explanation.client.pyAn interactive terminal client that connects to Groq, loads the tools from the MCP server, and lets the model call those tools while answering lakehouse questions.
Architecture
User question
|
v
client.py
|
| Groq tool calling
v
mcp_server.py
|
| Authenticated REST calls
v
catalog_server.py
|
v
Mock Iceberg table metadata
Why this exists
Most lakehouse workflows still expect engineers to manually inspect catalogs, table schemas, snapshots, partitions, and metadata files. This demo explores what changes when an LLM is not asked to guess, but is instead given small, typed tools over the lakehouse control plane.
The goal is not to replace the query engine. The goal is to reduce the friction around discovery, debugging, schema inspection, and query planning.
Demo capabilities
The agent can answer questions such as:
What namespaces and tables are in this lakehouse?
Tell me about the orders table: schema, partitioning, and recent activity.
What changed in the orders table in the last two weeks?
I need to query the orders data as it was last Monday. Give me the time travel SQL.
How should I write efficient Spark SQL against the orders table to avoid full scans?
Repository structure
.
├── catalog_server.py # Mock Iceberg REST Catalog server
├── mcp_server.py # MCP-style tool server over the catalog
├── client.py # Groq-powered terminal client
├── requirements.txt # Python dependencies
└── README.md
Prerequisites
Use Python 3.10 or later.
You also need a Groq API key for the interactive client.
Create a key from the Groq console, then export it before running the client:
export GROQ_API_KEY="your_groq_api_key_here"
Setup
Clone the repo:
git clone https://github.com/<your-username>/<repo-name>.git
cd <repo-name>
Create and activate a virtual environment:
python3 -m venv .venv
source .venv/bin/activate
Install dependencies:
pip install -r requirements.txt
Run the demo
Open three terminal windows.
Terminal 1: start the mock Iceberg REST Catalog.
python catalog_server.py
Expected service:
http://localhost:5001
Terminal 2: start the MCP tool server.
python mcp_server.py
Expected service:
http://localhost:5002
Terminal 3: start the interactive client.
export GROQ_API_KEY="your_groq_api_key_here"
python client.py
The client will show suggested demo questions. You can type one of the numbers or ask your own question.
Available MCP tools
The MCP server exposes these tools to the client:
| Tool | Purpose |
|---|---|
list_namespaces |
Lists available catalog namespaces |
list_tables |
Lists tables inside a namespace |
describe_table |
Returns trimmed schema, partition, property, and snapshot metadata for one table |
get_snapshots |
Returns recent Iceberg snapshot history |
time_travel_info |
Finds the closest snapshot for a target date and returns SQL |
explain_partition |
Explains partition transforms and query pruning strategy |
Design notes
The demo intentionally keeps the catalog local so the talk can focus on the control-plane pattern instead of cloud setup.
The MCP server trims table metadata before sending it to the LLM. This is important because real Iceberg metadata can be large, noisy, and full of file paths that are not useful for conversational reasoning.
The client uses model tool calling instead of prompting the model with raw metadata. This makes the agent behavior easier to inspect because every tool call and tool result is printed in the terminal.
Talk slides
This demo is part of the talk at Cloudera Talk to Your Lakehouse: Building an MCP Server for Apache Iceberg.
Slides are available here:
Установка Iceberg Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/inirah02/talk-to-your-lakehouseFAQ
Iceberg Server MCP бесплатный?
Да, Iceberg Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Iceberg Server?
Нет, Iceberg Server работает без API-ключей и переменных окружения.
Iceberg Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Iceberg Server в Claude Desktop, Claude Code или Cursor?
Открой Iceberg Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
автор: wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
автор: madhurprashPostgres
Query your database in natural language
автор: AnthropicPostgreSQL
Read-only database access with schema inspection.
автор: modelcontextprotocolCompare Iceberg Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории data
