@kynver-app/mcp-agent-os 0.2.3 → 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.
- package/README.md +13 -5
- 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
|
|
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,
|
|
@@ -21,19 +21,27 @@ The full family:
|
|
|
21
21
|
- `agent_os_list_goals`
|
|
22
22
|
- `agent_os_update_goal`
|
|
23
23
|
- `agent_os_get_projects`
|
|
24
|
+
- `agent_os_create_project`
|
|
24
25
|
- `agent_os_update_project`
|
|
25
26
|
- `agent_os_search_memory`
|
|
26
27
|
- `agent_os_write_memory`
|
|
28
|
+
- `agent_os_update_memory`
|
|
27
29
|
- `agent_os_get_contacts`
|
|
30
|
+
- `agent_os_create_contact`
|
|
31
|
+
- `agent_os_update_contact`
|
|
28
32
|
- `agent_os_consolidate_memory`
|
|
29
33
|
|
|
30
34
|
Schemas are mirrored in `lib/mcp/tool-manifests/kynver-mcp-agent-os.json` in
|
|
31
35
|
the Kynver repo (used as the static fallback when stdio spawn isn't available
|
|
32
36
|
— e.g. on Vercel).
|
|
33
37
|
|
|
34
|
-
Memory write/update tools
|
|
35
|
-
|
|
36
|
-
|
|
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.
|
|
37
45
|
|
|
38
46
|
`agent_os_log_session_event` appends structured session events. Close-session
|
|
39
47
|
summaries can then be synthesized from actual topics, actions, decisions, and
|
package/package.json
CHANGED