Skip to content

Commit 2cc7c29

Browse files
authored
chore: release v1.1.0 and update README.md (#28)
* doc: add --keep-connection option to README with description * doc: update README to clarify optional parameters and their defaults
1 parent 133dd19 commit 2cc7c29

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,14 @@ The server implements the following database interaction tool:
4848

4949
### Optional Parameters
5050

51-
- **--readonly**: Run server in read-only mode
51+
- **--readonly**: Run server in read-only mode (default: `false`)
5252
- **Description**: When this flag is set, the server operates in read-only mode. This means:
5353
- The DuckDB database will be opened with `read_only=True`, preventing any write operations.
5454
- If the specified database file does not exist, it **will not** be created.
5555
- **Security Benefit**: Prevents the Language Model (LLM) from performing any write operations, ensuring that the database remains unaltered.
5656
- **Reference**: For more details on read-only connections in DuckDB, see the [DuckDB Python API documentation](https://duckdb.org/docs/api/python/dbapi.html#read_only-connections).
57-
57+
- **--keep-connection**: Re-uses a single DuckDB connection mode (default: `false`)
58+
- **Description**: When this flag is set, Re-uses a single DuckDB connection for the entire server lifetime. Enables TEMP objects & slightly faster queries, but can hold an exclusive lock on the file.
5859

5960
## Installation
6061

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mcp-server-duckdb"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
description = "A DuckDB MCP server"
55
readme = "README.md"
66
license = { file = "LICENSE" }

uv.lock

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)