Insert From URL
insert-from-urlIngest JSON or JSONL data from a public URL into a RawTree table. Streams progress as NDJSON.
Instructions
Purpose: Ask RawTree to ingest JSON/JSONL data from a public URL into a table. RawTree streams progress as NDJSON.
NOT for: Private files on your machine, authenticated URLs, or built-in transforms. Host transformed data first or use insert-json with transform.
Returns: The RawTree NDJSON progress stream as text.
When to use:
User has a public JSON or JSONL file URL
You need RawTree to fetch and ingest the file directly
The data is too large or inconvenient to paste into the MCP call
Workflow: Confirm the URL is public → call insert-from-url → use list-logs and run-query to verify.
Key trigger phrases: "ingest this URL", "load JSONL from", "import from public file"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table | Yes | Target table name. | |
| url | Yes | Public URL containing data RawTree can fetch. |