tool-selection
Installation
SKILL.md
Tool Selection Rubric
When evaluating tool selection in agent traces:
1. MCP Over Bash
If a Databricks MCP tool exists for the operation, the agent MUST use it:
- SQL queries →
mcp__databricks__execute_sql(notBash+databricks sql) - File uploads →
mcp__databricks__upload_to_volume(notBash+databricks fs cp) - Job management →
mcp__databricks__create_job,mcp__databricks__run_job(not REST API via curl) - Cluster ops →
mcp__databricks__create_cluster(not CLI via Bash) - Workspace files →
mcp__databricks__workspace_get_object(not Bash +databricks workspace export)
2. Correct Tool for Task
- SQL execution →
execute_sql(not notebook execution) - Reading docs →
Readtool (not fetching via curl) - File creation →
Writetool for local, volume upload for remote - Schema inspection →
execute_sqlwithDESCRIBEorSHOW(notlist_tablesfor column details)