mcp-databricks-server CLAUDE.md

mcp-databricks-server CLAUDE.md is an instructions file for coding agents from proxziima/mcp-databricks-server. It costs 965 tokens per session, scanned A, original, MIT.

A CLAUDE.md instruction file explaining how the mcp-databricks-server project is organized and developed. The project is an MCP server for querying Databricks data and metadata.

In plain words
What is it for?
It guides work on Unity Catalog browsing, SQL execution, data-lineage lookup, Databricks SDK integration, caching, asynchronous calls, and Markdown output.
Why use it?
It gives Claude Code the architecture and implementation rules needed to change the server without guessing how its components fit together.

Instructions file

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/proxziima/mcp-databricks-server/claude-md
Clone the repo
git clone --depth 1 https://github.com/proxziima/mcp-databricks-server

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp-databricks-server CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/proxziima/mcp-databricks-server/claude-md.svg)](https://agentmods.dev/instructions/proxziima/mcp-databricks-server/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/proxziima/mcp-databricks-server/claude-md"><img src="https://agentmods.dev/badge/instructions/proxziima/mcp-databricks-server/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 965 This file is loaded in full into every session.
When invoked 965 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00965 $0.00965
Opus 5 $0.00483 $0.00483
Sonnet 5 $0.00193 $0.00193
Haiku 4.5 $0.00097 $0.00097

Measured 4d ago against content hash 01b5fd6ac130, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

mcp-databricks-server CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 116 lines

How it starts

The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Project Overview

This is a Model Context Protocol (MCP) server that enables LLMs to interact with Databricks Unity Catalog and execute SQL queries. The server exposes tools for browsing Unity Catalog metadata (catalogs, schemas, tables), analyzing data lineage (including notebook and job dependencies), and executing SQL queries.

Architecture

Core Components:

  • main.py: FastMCP server entry point that defines the MCP tools and handles async execution
  • databricks_sdk_utils.py: Databricks SDK integration layer that handles all UC metadata retrieval, lineage fetching, and SQL execution
  • databricks_formatter.py: Formats query results and metadata into markdown for LLM consumption

Key Design Patterns:

  • The server uses asyncio.to_thread() to run synchronous Databricks SDK calls in thread pool
  • Global WorkspaceClient is initialized once at module import in databricks_sdk_utils.py
  • Job and notebook information is cached to avoid redundant API calls during lineage fetching
  • All outputs are formatted as Markdown for optimal LLM parsing

Development Commands

Setup environment:

# Install dependencies with pip
pip install -r requirements.txt

# Or with uv (recommended)
uv pip install -r requirements.txt

Running the server:

# Run standalone (stdio transport for MCP clients)
python main.py

# Or with uv
uv run main.py

Configuration:

Required environment variables (set via .env file or shell):

  • DATABRICKS_HOST: Databricks workspace URL
  • DATABRICKS_TOKEN: Personal access token or service principal token
  • DATABRICKS_SQL_WAREHOUSE_ID: SQL warehouse ID (for SQL execution and lineage)

MCP Tools Implementation

The server exposes 5 MCP tools:

  1. list_uc_catalogs() - Lists all available catalogs
  2. describe_uc_catalog(catalog_name) - Shows schemas within a catalog
  3. describe_uc_schema(catalog_name, schema_name, include_columns) - Shows tables in a schema, optionally with column details
  4. describe_uc_table(full_table_name, include_lineage) - Shows table structure with optional comprehensive lineage (upstream/downstream tables, notebooks, jobs)
  5. execute_sql_query(sql) - Executes SQL queries and returns formatted results

Read the full file on GitHub · 116 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 116 lines · 965 tokens per session scan A 01b5fd6ac130

Subscribe to this mod's changes

mcp-databricks-server CLAUDE.md is an instructions file published in the GitHub repository proxziima/mcp-databricks-server (0 stars, last pushed 9mo ago), licensed MIT. It adds 965 tokens to every session, about $0.0048 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

GPT-RAG release.instructions.md

Instructions for Azure/GPT-RAG, a project described as: Enterprise-grade accelerator for agentic RAG on Azure. Built on Microsoft Foundry with Foundry IQ as the default retrieval backend, Microsoft Agent Framework orchestration, Zero-Trust architecture and IaC.

Azure/GPT-RAG · 207 tokens

apex-accelerator vendor-prompting.instructions.md

Vendor prompting best-practice rules for Anthropic Claude and OpenAI GPT-5.6-Terra agents and prompts. Each rule cites a rule ID in the vendor-prompting skill rules.json registry. Validator: npm run lint:vendor-prompting.

jonathan-vella/apex-accelerator · 1,488 tokens

ken CLAUDE.md

Claude Code instructions for townsendmerino/ken, covering claude.md, what this is, repository ownership (read this first), commands and embedding parity & golden fixtures (now in aikit).

townsendmerino/ken · 6,633 tokens

rag-code-mcp copilot-instructions.md

Instructions for doITmagic/rag-code-mcp, covering copilot instructions - ragcode mcp, ⚖️ the golden rule, project overview, architecture & patterns and developer workflows.

doITmagic/rag-code-mcp · 568 tokens

ZipAI CLAUDE.md

Claude Code instructions for nickdesi/ZipAI, covering claude.md — zipai: ultra-dense token optimizer, rules, 1. zero filler, 2. ambiguity and 3. prompt caching.

nickdesi/ZipAI · 1,204 tokens

gpu-ai-skills CLAUDE.md

Claude Code instructions for intel/gpu-ai-skills, covering claude.md, what this repository is, repository structure, commands and validation (required before any skill change).

intel/gpu-ai-skills · 1,541 tokens