@runcontext/cli 0.3.4 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/dist/index.js +1686 -235
- package/dist/index.js.map +1 -1
- package/dist/server-DEKWPP3H.js +192 -0
- package/dist/server-DEKWPP3H.js.map +1 -0
- package/package.json +39 -9
package/README.md
CHANGED
|
@@ -71,8 +71,17 @@ context init # Scaffold a new project structure
|
|
|
71
71
|
|
|
72
72
|
| Adapter | Connection |
|
|
73
73
|
|---|---|
|
|
74
|
-
| DuckDB | `--db duckdb://path
|
|
74
|
+
| DuckDB | `--db duckdb://path.duckdb` |
|
|
75
75
|
| PostgreSQL | `--db postgres://user:pass@host:5432/db` |
|
|
76
|
+
| MySQL | `--db mysql://user:pass@host:3306/db` |
|
|
77
|
+
| SQL Server | `--db mssql://user:pass@host:1433/db` |
|
|
78
|
+
| SQLite | `--db path/to/file.sqlite` |
|
|
79
|
+
| Snowflake | `--db snowflake://account/database/schema` |
|
|
80
|
+
| BigQuery | `--db bigquery://project/dataset` |
|
|
81
|
+
| ClickHouse | `--db clickhouse://host:8123` |
|
|
82
|
+
| Databricks | Config file only |
|
|
83
|
+
|
|
84
|
+
Each adapter requires its own driver as an optional peer dependency. See [Database Support docs](https://contextkit.dev/reference/databases/) for installation details.
|
|
76
85
|
|
|
77
86
|
## MCP Server
|
|
78
87
|
|