{"id":28719792,"url":"https://github.com/morristai/iceberg-mcp","last_synced_at":"2025-06-15T06:04:55.001Z","repository":{"id":287820785,"uuid":"965812568","full_name":"morristai/iceberg-mcp","owner":"morristai","description":"MCP server for Apache Iceberg","archived":false,"fork":false,"pushed_at":"2025-04-17T14:55:47.000Z","size":48,"stargazers_count":29,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-15T00:10:06.861Z","etag":null,"topics":["catalog","glue","iceberg","lakehouse","mcp","olap"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/morristai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-14T00:15:20.000Z","updated_at":"2025-05-22T22:06:52.000Z","dependencies_parsed_at":"2025-04-14T14:16:25.512Z","dependency_job_id":null,"html_url":"https://github.com/morristai/iceberg-mcp","commit_stats":null,"previous_names":["morristai/iceberg-mcp"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/morristai/iceberg-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morristai%2Ficeberg-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morristai%2Ficeberg-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morristai%2Ficeberg-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morristai%2Ficeberg-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/morristai","download_url":"https://codeload.github.com/morristai/iceberg-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morristai%2Ficeberg-mcp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259929964,"owners_count":22933531,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["catalog","glue","iceberg","lakehouse","mcp","olap"],"created_at":"2025-06-15T06:04:53.163Z","updated_at":"2025-06-15T06:04:54.981Z","avatar_url":"https://github.com/morristai.png","language":"Rust","funding_links":[],"categories":["Data Analysis \u0026 Exploration MCP Servers","🔧 Utilities"],"sub_categories":[],"readme":"# Iceberg MCP\n\nAn [MCP](https://modelcontextprotocol.io/introduction) server for [Apache Iceberg](https://iceberg.apache.org/) catalogs with async and logging.\n\n[Iceberg MCP DEMO](https://github.com/user-attachments/assets/13c22d3c-c0a1-4767-acfa-1ffdd1941afd)\n\n\n### Supported Catalogs\n\n| Catalog Type   | Supported |\n|----------------|-----------|\n| Rest Catalogs  | ✅        |\n| AWS Glue       | ✅        |\n| Hive Metastore | ❌        |\n| S3 Table       | ❌        |\n\n### Supported Tools\n\n| Tools              | Description                                    |\n|--------------------|------------------------------------------------|\n| `namespaces`       | Get all namespaces in the Iceberg catalog      |\n| `tables`           | Get all tables for a given namespace           |\n| `table_schema`     | Return the schema for a given table            |\n| `table_properties` | Return table properties for a given table      |\n\n## Installation\n\n### Option 1: Download the Release Binary\n\nDownload the latest pre-built binary from the [Releases page](https://github.com/morristai/iceberg-mcp/releases).\n\n\n### Option 2: Build from Source\n\nTo build the project manually, ensure you have [Rust](https://www.rust-lang.org/tools/install) installed, then run:\n\n```shell\ncargo build --release\n```\n\nThe compiled binary will be located at: `./target/release/iceberg-mcp`\n\n## Client Configuration\n\n### Claude Desktop\n\nTo integrate Iceberg MCP with Claude Desktop:\n1. Open `Settings` \u003e `Developer` \u003e `Edit Config`.\n2. Update `claude_desktop_config.json` with the appropriate configuration:\n\n- Rest Catalogs\n\n```json\n{\n  \"mcpServers\": {\n    \"iceberg-mcp\": {\n      \"command\": \"PATH-TO-BINARY/iceberg-mcp\",\n      \"env\": {\n        \"CATALOG_KIND\": \"rest\",\n        \"REST_URI\": \"http://localhost:8080\",\n        \"LOG_LEVEL\": \"info\"\n      }\n    }\n  }\n}\n```\n\n- AWS Glue Catalogs\n\n```json\n{\n  \"mcpServers\": {\n    \"iceberg-mcp\": {\n      \"command\": \"PATH-TO-BINARY/iceberg-mcp\",\n      \"env\": {\n        \"CATALOG_KIND\": \"glue\",\n        \"AWS_CONFIG_FILE\": \"/Users/{your_username}/.aws/config\",\n        \"AWS_SHARED_CREDENTIALS_FILE\": \"/Users/{your_username}/.aws/credentials\",\n        \"PROFILE_NAME\": \"default\",\n        \"WAREHOUSE\": \"s3://{bucket_name}/{namespace}/{table}\",\n        \"LOG_LEVEL\": \"info\"\n      }\n    }\n  }\n}\n```\n\n## Debugging \n\n### Claude Desktop\n\nView logs for troubleshooting with:\n\n```shell\ntail -n 20 -F ~/Library/Logs/Claude/mcp-server-iceberg-mcp.log\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorristai%2Ficeberg-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmorristai%2Ficeberg-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorristai%2Ficeberg-mcp/lists"}