@kynver-app/mcp-agent-os 0.2.2 → 0.2.4

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 +18 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # @kynver-app/mcp-agent-os
2
2
 
3
- Kynver Agentic OS MCP server. Exposes the 12-tool `agent_os_*` family that
3
+ Kynver Agentic OS MCP server. Exposes the `agent_os_*` family that
4
4
  proxies to `/api/agent-os/{slug}/*` on a Kynver deployment. Each tool accepts
5
5
  an optional `slug` argument; if omitted, it falls back to
6
- `KYNVER_AGENT_OS_SLUG` env, then to `"ghost"`.
6
+ `KYNVER_AGENT_OS_SLUG` env, then the account's primary AgentOS slug, then to `"ghost"`.
7
7
 
8
8
  This is the **external surface only**. The in-app Kynver agent does not
9
9
  dispatch these tools — they exist for MCP clients (Claude Code, Cursor,
@@ -16,23 +16,36 @@ The full family:
16
16
  - `agent_os_get_context`
17
17
  - `agent_os_open_session`
18
18
  - `agent_os_close_session`
19
+ - `agent_os_log_session_event`
19
20
  - `agent_os_log_session`
20
21
  - `agent_os_list_goals`
21
22
  - `agent_os_update_goal`
22
23
  - `agent_os_get_projects`
24
+ - `agent_os_create_project`
23
25
  - `agent_os_update_project`
24
26
  - `agent_os_search_memory`
25
27
  - `agent_os_write_memory`
28
+ - `agent_os_update_memory`
26
29
  - `agent_os_get_contacts`
30
+ - `agent_os_create_contact`
31
+ - `agent_os_update_contact`
27
32
  - `agent_os_consolidate_memory`
28
33
 
29
34
  Schemas are mirrored in `lib/mcp/tool-manifests/kynver-mcp-agent-os.json` in
30
35
  the Kynver repo (used as the static fallback when stdio spawn isn't available
31
36
  — e.g. on Vercel).
32
37
 
33
- Memory write/update tools accept `sourceRefs` for structured provenance. Use it
34
- to attach repo paths, commits, PRs, map files, sessions, tools, or URLs to
35
- important memories instead of burying those pointers in freeform text.
38
+ Memory write/update tools are the memory-writer surface. They accept
39
+ `sourceRefs` for structured provenance plus `memoryType`, `confidence`,
40
+ `reviewStatus`, `projectId`, `goalId`, and `contactId`. Use those fields to
41
+ attach repo paths, commits, PRs, map files, sessions, tools, URLs, and review
42
+ state to important memories instead of burying those pointers in freeform text.
43
+ Set `reviewStatus: "needs_review"` for important or uncertain memories that a
44
+ human should be able to find and correct in the dashboard.
45
+
46
+ `agent_os_log_session_event` appends structured session events. Close-session
47
+ summaries can then be synthesized from actual topics, actions, decisions, and
48
+ follow-ups instead of generic lifecycle text.
36
49
 
37
50
  ## Env
38
51
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kynver-app/mcp-agent-os",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "Kynver Agentic OS MCP server — slug-keyed agent identity, goals, projects, sessions, and long-term memory",
5
5
  "type": "module",
6
6
  "bin": {