@ounie/mcp 0.3.0 → 0.3.1

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.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,6 +18,19 @@ It speaks MCP over **stdio** and calls the Ounie REST API on your behalf using a
18
18
  | `ounie_add_note` | `brainId`, `title`, `body` | Save a text note as a new source (verbatim). |
19
19
  | `ounie_add_link` | `brainId`, `url` | Save a web link as a new source. |
20
20
  | `ounie_search` | `brainId`, `query` | Retrieve & summarize relevant saved sources. |
21
+ | `ounie_get_context` | `brainId`, `query` | Retrieve the raw matching wiki pages **without** generating an answer — your assistant reasons over them and cites by `slug`. Cheaper/faster than `ounie_ask_brain`. |
22
+
23
+ ### Prefer `ounie_get_context` for answering
24
+
25
+ `ounie_ask_brain` runs Ounie's own LLM to write the answer; `ounie_get_context` returns just
26
+ the retrieved pages so **your** assistant writes the answer. When the assistant is already a
27
+ capable model (Claude, ChatGPT), prefer `ounie_get_context` — it's faster and avoids a
28
+ redundant second model call. Add a standing instruction to your client so it routes there by
29
+ default:
30
+
31
+ > When answering from my Ounie brains, prefer `ounie_get_context` over `ounie_ask_brain`:
32
+ > call `ounie_get_context`, read the returned pages, and write the answer yourself, citing
33
+ > pages inline as `[[slug]]`. Only use `ounie_ask_brain` if I explicitly ask Ounie to answer.
21
34
 
22
35
  ## Get an API key
23
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ounie/mcp",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Model Context Protocol server exposing your Ounie AI Second Brain to AI clients (Claude, Cursor, ChatGPT).",
5
5
  "type": "module",
6
6
  "license": "MIT",