@live-context/mcp 0.4.0 → 0.5.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 +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,7 +40,15 @@ For Claude Desktop, Cursor, or any other MCP client, add this to your `mcpServer
|
|
|
40
40
|
|
|
41
41
|
## Tools
|
|
42
42
|
|
|
43
|
-
`get_context`, `list_spaces`, `list_collections`, `list_notebooks`, `list_context
|
|
43
|
+
**Read** — `get_context`, `list_spaces`, `list_collections`, `list_notebooks`, `list_context`
|
|
44
|
+
|
|
45
|
+
**Write** — `write_context` (knowledge → Spaces or Notebooks). Honors `write_mode='review_required'` Spaces: writes to those queue as proposals for admin approval. Pass `trigger_message` (min 10 chars) explaining why the write should be applied when targeting such a Space.
|
|
46
|
+
|
|
47
|
+
**Propose** *(v0.4.0+)* — `propose_space`, `propose_project`, `list_my_proposals`. Use these when the user asks for a new container. Both `propose_*` tools require a `trigger_message` (min 10 chars). Auto-approves when the caller is a team admin; otherwise queues for review at `live-context.com/dashboard/proposals`.
|
|
48
|
+
|
|
49
|
+
**Health** — `health_check`
|
|
50
|
+
|
|
51
|
+
See the [Live Context docs](https://live-context.com/docs) for full schemas and examples.
|
|
44
52
|
|
|
45
53
|
## Get a key
|
|
46
54
|
|
package/package.json
CHANGED