Export Dataverse table data to CSV or JSON file
Exports Dataverse table data to CSV or JSON files with configurable columns, filters, and limits.
/plugin marketplace add Sahib-Sawhney-WH/dapr-claude-plugin/plugin install sahib-sawhney-wh-dataverse-plugins-dataverse@Sahib-Sawhney-WH/dapr-claude-plugin<table_name> [output_file]Export data from a Dataverse table to a CSV or JSON file.
When the user runs /dataverse:export <table> [file]:
Parse arguments
<table>_export.csv)Get table schema
dataverse_get_table_info to get columnsConfigure export
Query data
dataverse_query with select and filterWrite output file
Report results
Ask user about:
CSV (default):
accountid,name,telephone1
00000000-0000-0000-0000-000000000001,Contoso,555-0100
00000000-0000-0000-0000-000000000002,Fabrikam,555-0200
JSON:
[
{"accountid": "00000000-...", "name": "Contoso", "telephone1": "555-0100"},
{"accountid": "00000000-...", "name": "Fabrikam", "telephone1": "555-0200"}
]