Skip to content

Commit d957df4

Browse files
authored
Update project version to 0.2.0 and enhance metadata in pyproject.toml; (#13)
Update README.md to include new `READ_ONLY_QUERY_MODE` option for improved query control.
1 parent 08c91bb commit d957df4

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ An [MCP](https://modelcontextprotocol.io/) server implementation of Couchbase th
1010
- Upsert a document by ID to a specified scope and collection
1111
- Delete a document by ID from a specified scope and collection
1212
- Run a [SQL++ query](https://www.couchbase.com/sqlplusplus/) on a specified scope
13+
- There is an option in the MCP server, `READ_ONLY_QUERY_MODE` that is set to true by default to disable running queries that change the data or the underlying collection structure.
1314

1415
## Prerequisites
1516

@@ -159,7 +160,6 @@ docker run -i \
159160
-e CB_BUCKET_NAME='<bucket_name>' \
160161
-e MCP_TRANSPORT='stdio/sse' \
161162
-e READ_ONLY_QUERY_MODE="true/false" \
162-
163163
mcp/couchbase
164164
```
165165

pyproject.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
[project]
22
name = "mcp-couchbase"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "Couchbase MCP Server - The Developer Data Platform for Critical Applications in Our AI World"
55
readme = "README.md"
66
requires-python = ">=3.10"
77
license = "Apache-2.0"
8+
authors = [
9+
{ name="Nithish Raghunandanan", email="[email protected]" },
10+
]
11+
classifiers = [
12+
"Development Status :: 4 - Beta",
13+
"Programming Language :: Python :: 3",
14+
"Topic :: Database",
15+
]
816

917
dependencies = [
1018
"click>=8.1.8",

0 commit comments

Comments
 (0)