@starascendin/lifeos-mcp 0.7.61 → 0.7.62
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 +65 -1
- package/dist/build-info.d.ts +2 -2
- package/dist/build-info.js +2 -2
- package/dist/index.js +1532 -83
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# LifeOS MCP Server
|
|
2
2
|
|
|
3
|
-
MCP (Model Context Protocol) server for LifeOS Project Management. This allows AI assistants like Claude to interact with your LifeOS projects, tasks, cycles, notes, and
|
|
3
|
+
MCP (Model Context Protocol) server for LifeOS Project Management and Life Design. This allows AI assistants like Claude to interact with your LifeOS projects, tasks, cycles, notes, contacts, and PPV life design system.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -24,6 +24,18 @@ npx @starascendin/lifeos-mcp --url <your-convex-url> --user-id <your-user-id> --
|
|
|
24
24
|
| User ID | `--user-id`, `-i` | `LIFEOS_USER_ID` | Your LifeOS user ID |
|
|
25
25
|
| API Key | `--api-key`, `-k` | `LIFEOS_API_KEY` | Your API key for authentication |
|
|
26
26
|
|
|
27
|
+
### Optional SurrealDB Sidecar Parameters
|
|
28
|
+
|
|
29
|
+
These are required only for the Surreal graph tools.
|
|
30
|
+
|
|
31
|
+
| Env Variable | Description |
|
|
32
|
+
|--------------|-------------|
|
|
33
|
+
| `SURREAL_ENDPOINT` | SurrealDB HTTP endpoint, e.g. `https://surrealdbprod.apps.rjlabs.dev` |
|
|
34
|
+
| `SURREAL_USER` | SurrealDB username |
|
|
35
|
+
| `SURREAL_PASS` | SurrealDB password |
|
|
36
|
+
| `SURREAL_NS` | Namespace, defaults to `lifeos` |
|
|
37
|
+
| `SURREAL_DB` | Database, defaults to `graph` |
|
|
38
|
+
|
|
27
39
|
### Getting Your Credentials
|
|
28
40
|
|
|
29
41
|
1. **Convex URL**: Find in your Convex dashboard - use the `.convex.site` URL (not `.convex.cloud`)
|
|
@@ -102,6 +114,8 @@ Add to your `.mcp.json` (project root or `~/.claude/mcp.json`):
|
|
|
102
114
|
### Agenda
|
|
103
115
|
- **get_daily_agenda** - Today's tasks, events, priorities
|
|
104
116
|
- **get_weekly_agenda** - Week's tasks and events
|
|
117
|
+
- **get_planning_context** - Full day/week/current-cycle planning context for agents
|
|
118
|
+
- **apply_planning_patch** - Mutating planning patch for due dates, priorities, current cycle, and notes
|
|
105
119
|
|
|
106
120
|
### Habits
|
|
107
121
|
- **get_habits** - List active habits with streaks and completion stats
|
|
@@ -155,6 +169,40 @@ Add to your `.mcp.json` (project root or `~/.claude/mcp.json`):
|
|
|
155
169
|
- **get_business_contacts** - List business-marked Beeper threads with linked contact/client info
|
|
156
170
|
- **get_client_success_workspace** - Load one client's chats, meetings, notes, projects, and open work in one call
|
|
157
171
|
|
|
172
|
+
### PPV Life Design
|
|
173
|
+
- **get_ppv_workspace** - Get vision, identity, pillars, linked projects, weekly actions, reflections, and adjustments
|
|
174
|
+
- **get_active_vision_graph** - Best default graph read for PPV/alignment questions; connects the active vision to projects, issues, and recent memos
|
|
175
|
+
- **seed_ppv_beijing_workspace** - Seed the Beijing Creative Salon example if no PPV vision exists
|
|
176
|
+
- **upsert_ppv_vision** - Create or update a PPV vision
|
|
177
|
+
- **upsert_ppv_identity** - Create or update identity components for a vision
|
|
178
|
+
- **create_ppv_pillar / update_ppv_pillar / delete_ppv_pillar** - Manage pillars and links to existing LifeOS projects
|
|
179
|
+
- **create_ppv_weekly_action / update_ppv_weekly_action / delete_ppv_weekly_action** - Manage weekly identity-aligned actions
|
|
180
|
+
- **create_ppv_reflection / delete_ppv_reflection** - Capture reflection loops
|
|
181
|
+
- **create_ppv_adjustment / delete_ppv_adjustment** - Record adjustments from lived evidence
|
|
182
|
+
|
|
183
|
+
### Unified Graph
|
|
184
|
+
- **get_unified_life_graph** - Build the user's full live unified graph across LifeOS domains
|
|
185
|
+
- **get_project_graph** - Read the graph neighborhood around one project
|
|
186
|
+
- **get_initiative_graph** - Read the graph neighborhood around one initiative
|
|
187
|
+
- **get_person_graph** - Read the graph neighborhood around one person/contact
|
|
188
|
+
- **get_voice_memo_graph** - Read the graph neighborhood around one voice memo
|
|
189
|
+
- **get_cached_unified_graph** - Read the materialized cached graph projection
|
|
190
|
+
- **refresh_unified_graph_cache** - Recompute inferred graph links and refresh the cached projection
|
|
191
|
+
- **upsert_unified_graph_link / delete_unified_graph_link** - Create or remove manual links between graph nodes
|
|
192
|
+
|
|
193
|
+
### SurrealDB Sidecar Graph
|
|
194
|
+
- **surreal_graph_schema** - Inspect the agent graph contract, configured namespace/db, allowed table prefixes, relation tables, and examples
|
|
195
|
+
- **surreal_graph_query** - Run guarded read-only SurrealQL (`SELECT`, `INFO`, `EXPLAIN` only)
|
|
196
|
+
- **surreal_graph_link** - Create/update an agent-owned relationship in `lifeos_agent_links` without mutating Convex-synced entity tables
|
|
197
|
+
- **surreal_graph_unlink** - Remove a relationship previously created by `surreal_graph_link`
|
|
198
|
+
|
|
199
|
+
Surreal graph rules:
|
|
200
|
+
- Convex remains canonical for entity data.
|
|
201
|
+
- SurrealDB is the relationship/query sidecar.
|
|
202
|
+
- Agents may query graph data and write only agent-owned links through `lifeos_agent_links`.
|
|
203
|
+
- Every agent-created link must include a reason and confidence.
|
|
204
|
+
- Raw read queries should include `LIMIT`.
|
|
205
|
+
|
|
158
206
|
## Shared Council Architecture
|
|
159
207
|
|
|
160
208
|
`run_council` calls the Convex `POST /council-skill` endpoint. That is the same shared council core used by:
|
|
@@ -169,8 +217,24 @@ This keeps council orchestration in one place instead of duplicating it per runt
|
|
|
169
217
|
|
|
170
218
|
```bash
|
|
171
219
|
lifeos-mcp --help
|
|
220
|
+
lifeos-mcp agenda day --date 2026-05-13
|
|
221
|
+
lifeos-mcp agenda week --week-start-date 2026-05-11
|
|
222
|
+
lifeos-mcp patch ./planning-patch.json --dry-run
|
|
223
|
+
lifeos-mcp ppv workspace
|
|
224
|
+
lifeos-mcp ppv graph
|
|
225
|
+
lifeos-mcp ppv seed
|
|
226
|
+
lifeos-mcp ppv vision --file ./ppv-vision.json
|
|
227
|
+
lifeos-mcp ppv action --file ./ppv-weekly-action.json
|
|
172
228
|
```
|
|
173
229
|
|
|
230
|
+
PPV CLI actions: `workspace`, `graph`, `vision-graph`, `seed`, `vision`, `identity`, `pillar`,
|
|
231
|
+
`update-pillar`, `delete-pillar`, `action`, `update-action`, `delete-action`,
|
|
232
|
+
`reflection`, `delete-reflection`, `adjustment`, `delete-adjustment`.
|
|
233
|
+
|
|
234
|
+
For the broader graph family (`get_project_graph`, `get_initiative_graph`, `get_person_graph`,
|
|
235
|
+
`get_voice_memo_graph`, `get_unified_life_graph`, cache refresh, and manual link tools), invoke the
|
|
236
|
+
MCP tools directly from an agent runtime or use the `lifeos` CLI wrapper.
|
|
237
|
+
|
|
174
238
|
## License
|
|
175
239
|
|
|
176
240
|
MIT
|
package/dist/build-info.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.7.
|
|
2
|
-
export declare const BUILD_TIME = "2026-
|
|
1
|
+
export declare const VERSION = "0.7.62";
|
|
2
|
+
export declare const BUILD_TIME = "2026-05-16T19:10:03.302Z";
|
package/dist/build-info.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// AUTO-GENERATED — do not edit. Regenerated on every build.
|
|
2
|
-
export const VERSION = "0.7.
|
|
3
|
-
export const BUILD_TIME = "2026-
|
|
2
|
+
export const VERSION = "0.7.62";
|
|
3
|
+
export const BUILD_TIME = "2026-05-16T19:10:03.302Z";
|