databricks/app-templates

discover-tools

Discover available tools and resources in Databricks workspace.

First seen Feb 15, 2026

Installation

$ npx skills add databricks/app-templates --skill discover-tools

Summary

  • Discover available tools and resources in Databricks workspace.
  • Use when: (1) User asks 'what tools are available', (2) Before writing agent code, (3) Looking for MCP servers, Genie spaces, UC functions, or vector search indexes, (4) User says 'discover', 'find resources', or 'what can I connect to'.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from databricks/app-templates · top by installs.

npx skills add databricks/app-templates

Browse all from databricks/app-templates

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 197
License LICENSE
Default branch main
Open issues 14
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,914 B
  • docs SUMMARY.md 323 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 33 installs

SKILL.md

Discover Available Tools

Run tool discovery BEFORE writing agent code to understand what resources are available in the workspace.

Run Discovery

uv run discover-tools

Options:

# Limit to specific catalog/schema
uv run discover-tools --catalog my_catalog --schema my_schema

# Output as JSON
uv run discover-tools --format json --output tools.json

# Save markdown report
uv run discover-tools --output tools.md

# Use specific Databricks profile
uv run discover-tools --profile DEFAULT

What Gets Discovered

Resource Type Description MCP URL Pattern
UC Functions SQL UDFs as agent tools {host}/api/2.0/mcp/functions/{catalog}/{schema}
UC Tables Structured data for querying (via UC functions)
Vector Search Indexes RAG applications {host}/api/2.0/mcp/vector-search/{catalog}/{schema}
Genie Spaces Natural language data interface {host}/api/2.0/mcp/genie/{space_id}
Custom MCP Servers Apps starting with mcp-* {app_url}/mcp
External MCP Servers Via UC connections {host}/api/2.0/mcp/external/{connection_name}

Next Steps

After discovering tools:

  1. Add MCP servers to your agent - See modify-agent skill for SDK-specific code examples
  2. Grant permissions in databricks.yml - See add-tools skill for YAML snippets
  3. Test locally with uv run start-app - See run-locally skill

Need a resource that doesn't exist yet? See the create-tools skill.