What problem does it solve?
This Skill helps an AI agent connect to a specific Dataverse/XRM environment and reliably find the right tables and fields before running queries or making updates, avoiding guesses that fail when schemas differ between organizations.
Core Features & Use Cases
- Environment-first connectivity: start with ping(org_url) to confirm the environment and authentication work.
- Schema discovery workflow: resolve user-friendly table names with find_table(org_url, name), then fetch exact column metadata with describe_table(org_url, table).
- Grounded data access and updates: query records with query_records and use create_record/update_record/upsert_record for careful write operations, while enforcing the org_url as the only source of truth.
- Safety guardrails for routing: directs the agent to surface errors instead of silently switching to other approaches for Dataverse data requests.
Quick Start
Ask your agent: "From https://yourorg.crm4.dynamics.com, find the logical table for 'hour entries', discover its columns, then show the records from the last 30 days with a brief summary."