BREAKING CHANGE: All generic command names now prefixed with plugin namespace. See CHANGELOG.md v7.0.0 for complete rename map. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
906 B
906 B
/ingest - Data Ingestion
Skills to Load
- skills/mcp-tools-reference.md
- skills/visual-header.md
Visual Output
Display header: DATA-PLATFORM - Ingest
Usage
/ingest [source]
Workflow
-
Identify source:
- File path: determine format (CSV, Parquet, JSON)
- SQL query or table name: query PostgreSQL
-
Load data:
- Files:
read_csv,read_parquet,read_json - Database:
pg_query
- Files:
-
Validate: Check row count against 100k limit
-
Report: data_ref, row count, columns, memory usage, preview
Examples
/ingest data/sales.csv
/ingest data/customers.parquet
/ingest "SELECT * FROM orders WHERE created_at > '2024-01-01'"
Required MCP Tools
read_csv- Load CSV filesread_parquet- Load Parquet filesread_json- Load JSON/JSONL filespg_query- Query PostgreSQL databaselist_data- List loaded DataFrames