@starascendin/lifeos-mcp 0.7.36 → 0.7.37

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.
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.7.36";
2
- export declare const BUILD_TIME = "2026-03-04T00:59:17.564Z";
1
+ export declare const VERSION = "0.7.37";
2
+ export declare const BUILD_TIME = "2026-03-04T16:41:45.323Z";
@@ -1,3 +1,3 @@
1
1
  // AUTO-GENERATED — do not edit. Regenerated on every build.
2
- export const VERSION = "0.7.36";
3
- export const BUILD_TIME = "2026-03-04T00:59:17.564Z";
2
+ export const VERSION = "0.7.37";
3
+ export const BUILD_TIME = "2026-03-04T16:41:45.323Z";
package/dist/index.js CHANGED
@@ -3817,6 +3817,498 @@ const TOOLS = [
3817
3817
  required: ["actionItemId"],
3818
3818
  },
3819
3819
  },
3820
+ // ==================== LIFE DEVELOPMENT (Design Your Life) ====================
3821
+ {
3822
+ name: "get_journal_entries",
3823
+ description: "Get Good Time Journal entries (AEIOU activity log with energy/engagement/flow ratings). Returns recent entries sorted by date descending.",
3824
+ inputSchema: {
3825
+ type: "object",
3826
+ properties: {
3827
+ limit: {
3828
+ type: "number",
3829
+ description: "Max entries to return (default 50)",
3830
+ },
3831
+ },
3832
+ },
3833
+ },
3834
+ {
3835
+ name: "create_journal_entry",
3836
+ description: "Create a Good Time Journal entry. Log an activity using the AEIOU method (Activity, Environment, Interactions, Objects, Users) and rate energy/engagement/flow from 1-5.",
3837
+ inputSchema: {
3838
+ type: "object",
3839
+ properties: {
3840
+ activity: {
3841
+ type: "string",
3842
+ description: "What were you doing? (required)",
3843
+ },
3844
+ environment: {
3845
+ type: "string",
3846
+ description: "Where were you? What was the setting like?",
3847
+ },
3848
+ interactions: {
3849
+ type: "string",
3850
+ description: "What/who were you interacting with?",
3851
+ },
3852
+ objects: {
3853
+ type: "string",
3854
+ description: "What objects/devices were you using?",
3855
+ },
3856
+ usersInvolved: {
3857
+ type: "string",
3858
+ description: "Who else was involved?",
3859
+ },
3860
+ energyRating: {
3861
+ type: "number",
3862
+ description: "Energy level 1-5 (1=drained, 5=energized) (required)",
3863
+ },
3864
+ engagementRating: {
3865
+ type: "number",
3866
+ description: "Engagement level 1-5 (1=bored, 5=fully engaged) (required)",
3867
+ },
3868
+ flowRating: {
3869
+ type: "number",
3870
+ description: "Flow level 1-5 (1=no flow, 5=lost track of time) (required)",
3871
+ },
3872
+ isWork: {
3873
+ type: "boolean",
3874
+ description: "Was this a work activity?",
3875
+ },
3876
+ isPlay: {
3877
+ type: "boolean",
3878
+ description: "Was this a play/leisure activity?",
3879
+ },
3880
+ notes: {
3881
+ type: "string",
3882
+ description: "Additional notes or reflections",
3883
+ },
3884
+ },
3885
+ required: ["activity", "energyRating", "engagementRating", "flowRating"],
3886
+ },
3887
+ },
3888
+ {
3889
+ name: "update_journal_entry",
3890
+ description: "Update an existing Good Time Journal entry. Pass only the fields you want to change.",
3891
+ inputSchema: {
3892
+ type: "object",
3893
+ properties: {
3894
+ entryId: {
3895
+ type: "string",
3896
+ description: "The journal entry ID to update (required)",
3897
+ },
3898
+ activity: { type: "string", description: "Updated activity" },
3899
+ environment: { type: "string", description: "Updated environment" },
3900
+ interactions: { type: "string", description: "Updated interactions" },
3901
+ objects: { type: "string", description: "Updated objects" },
3902
+ usersInvolved: { type: "string", description: "Updated users involved" },
3903
+ energyRating: { type: "number", description: "Updated energy rating 1-5" },
3904
+ engagementRating: { type: "number", description: "Updated engagement rating 1-5" },
3905
+ flowRating: { type: "number", description: "Updated flow rating 1-5" },
3906
+ isWork: { type: "boolean", description: "Updated work flag" },
3907
+ isPlay: { type: "boolean", description: "Updated play flag" },
3908
+ notes: { type: "string", description: "Updated notes" },
3909
+ },
3910
+ required: ["entryId"],
3911
+ },
3912
+ },
3913
+ {
3914
+ name: "delete_journal_entry",
3915
+ description: "Delete a Good Time Journal entry.",
3916
+ inputSchema: {
3917
+ type: "object",
3918
+ properties: {
3919
+ entryId: {
3920
+ type: "string",
3921
+ description: "The journal entry ID to delete (required)",
3922
+ },
3923
+ },
3924
+ required: ["entryId"],
3925
+ },
3926
+ },
3927
+ {
3928
+ name: "get_odyssey_plans",
3929
+ description: "Get all Odyssey Plans (up to 3 alternative 5-year life plans with confidence/resource/likability gauges and milestones).",
3930
+ inputSchema: {
3931
+ type: "object",
3932
+ properties: {},
3933
+ },
3934
+ },
3935
+ {
3936
+ name: "upsert_odyssey_plan",
3937
+ description: "Create or update an Odyssey Plan. Each plan represents an alternative 5-year life path with gauges for confidence, resources, and likability (0-100). Max 3 plans.",
3938
+ inputSchema: {
3939
+ type: "object",
3940
+ properties: {
3941
+ planId: {
3942
+ type: "string",
3943
+ description: "Plan ID to update (omit to create new)",
3944
+ },
3945
+ planNumber: {
3946
+ type: "number",
3947
+ description: "Plan number: 1, 2, or 3 (required for new plans)",
3948
+ },
3949
+ title: {
3950
+ type: "string",
3951
+ description: "Plan title (required)",
3952
+ },
3953
+ description: {
3954
+ type: "string",
3955
+ description: "Description of this life path",
3956
+ },
3957
+ timeline: {
3958
+ type: "string",
3959
+ description: "5-year narrative timeline",
3960
+ },
3961
+ confidenceLevel: {
3962
+ type: "number",
3963
+ description: "Confidence gauge 0-100",
3964
+ },
3965
+ resourceLevel: {
3966
+ type: "number",
3967
+ description: "Resources gauge 0-100",
3968
+ },
3969
+ likabilityLevel: {
3970
+ type: "number",
3971
+ description: "Likability gauge 0-100",
3972
+ },
3973
+ dashboardTitle: {
3974
+ type: "string",
3975
+ description: "Short label for dashboard display",
3976
+ },
3977
+ milestones: {
3978
+ type: "array",
3979
+ description: "Year milestones, e.g. [{year: 1, milestone: 'Launch business'}]",
3980
+ items: {
3981
+ type: "object",
3982
+ properties: {
3983
+ year: { type: "number" },
3984
+ milestone: { type: "string" },
3985
+ },
3986
+ required: ["year", "milestone"],
3987
+ },
3988
+ },
3989
+ isActive: {
3990
+ type: "boolean",
3991
+ description: "Set as the active/primary plan",
3992
+ },
3993
+ },
3994
+ required: ["planNumber", "title"],
3995
+ },
3996
+ },
3997
+ {
3998
+ name: "delete_odyssey_plan",
3999
+ description: "Delete an Odyssey Plan.",
4000
+ inputSchema: {
4001
+ type: "object",
4002
+ properties: {
4003
+ planId: {
4004
+ type: "string",
4005
+ description: "The plan ID to delete (required)",
4006
+ },
4007
+ },
4008
+ required: ["planId"],
4009
+ },
4010
+ },
4011
+ {
4012
+ name: "get_reflections",
4013
+ description: "Get Workview, Lifeview, or Coherence reflections. Each reflection type is versioned — returns the most recent versions.",
4014
+ inputSchema: {
4015
+ type: "object",
4016
+ properties: {
4017
+ type: {
4018
+ type: "string",
4019
+ description: "Filter by type: 'workview', 'lifeview', or 'coherence'. Omit for all types.",
4020
+ enum: ["workview", "lifeview", "coherence"],
4021
+ },
4022
+ },
4023
+ },
4024
+ },
4025
+ {
4026
+ name: "save_reflection",
4027
+ description: "Save a new version of a Workview, Lifeview, or Coherence reflection. Creates a new version each time (versions are immutable).",
4028
+ inputSchema: {
4029
+ type: "object",
4030
+ properties: {
4031
+ type: {
4032
+ type: "string",
4033
+ description: "Reflection type: 'workview', 'lifeview', or 'coherence' (required)",
4034
+ enum: ["workview", "lifeview", "coherence"],
4035
+ },
4036
+ content: {
4037
+ type: "string",
4038
+ description: "The reflection text (required)",
4039
+ },
4040
+ },
4041
+ required: ["type", "content"],
4042
+ },
4043
+ },
4044
+ // ==================== WAYFINDING ====================
4045
+ {
4046
+ name: "get_wayfinding_entries",
4047
+ description: "Get Wayfinding Dashboard entries — track Work/Play/Love/Health satisfaction (1-10) over time.",
4048
+ inputSchema: {
4049
+ type: "object",
4050
+ properties: {
4051
+ limit: {
4052
+ type: "number",
4053
+ description: "Max entries to return (default 20)",
4054
+ },
4055
+ },
4056
+ },
4057
+ },
4058
+ {
4059
+ name: "create_wayfinding_entry",
4060
+ description: "Create a Wayfinding Dashboard assessment. Rate your current satisfaction in Work, Play, Love, and Health on a scale of 1-10.",
4061
+ inputSchema: {
4062
+ type: "object",
4063
+ properties: {
4064
+ work: { type: "number", description: "Work satisfaction 1-10 (required)" },
4065
+ play: { type: "number", description: "Play satisfaction 1-10 (required)" },
4066
+ love: { type: "number", description: "Love satisfaction 1-10 (required)" },
4067
+ health: { type: "number", description: "Health satisfaction 1-10 (required)" },
4068
+ notes: { type: "string", description: "Optional reflection notes" },
4069
+ },
4070
+ required: ["work", "play", "love", "health"],
4071
+ },
4072
+ },
4073
+ // ==================== PROTOTYPE EXPERIMENTS ====================
4074
+ {
4075
+ name: "get_prototypes",
4076
+ description: "Get prototype experiments — life design experiments to test hypotheses about potential life paths.",
4077
+ inputSchema: {
4078
+ type: "object",
4079
+ properties: {
4080
+ status: {
4081
+ type: "string",
4082
+ enum: ["planned", "in_progress", "completed"],
4083
+ description: "Filter by status",
4084
+ },
4085
+ },
4086
+ },
4087
+ },
4088
+ {
4089
+ name: "create_prototype",
4090
+ description: "Create a prototype experiment to test a life design hypothesis. Types: conversation (talk to someone), experience (try something), side_project (build something).",
4091
+ inputSchema: {
4092
+ type: "object",
4093
+ properties: {
4094
+ title: { type: "string", description: "Experiment title (required)" },
4095
+ hypothesis: { type: "string", description: "What you want to test/learn (required)" },
4096
+ type: {
4097
+ type: "string",
4098
+ enum: ["conversation", "experience", "side_project"],
4099
+ description: "Experiment type (required)",
4100
+ },
4101
+ odysseyPlanId: { type: "string", description: "Link to an Odyssey Plan" },
4102
+ status: {
4103
+ type: "string",
4104
+ enum: ["planned", "in_progress", "completed"],
4105
+ description: "Status (default: planned)",
4106
+ },
4107
+ whatYouDid: { type: "string", description: "What you did" },
4108
+ whatYouLearned: { type: "string", description: "What you learned" },
4109
+ nextSteps: { type: "string", description: "Next steps" },
4110
+ startDate: { type: "string", description: "Start date ISO string" },
4111
+ },
4112
+ required: ["title", "hypothesis", "type"],
4113
+ },
4114
+ },
4115
+ {
4116
+ name: "update_prototype",
4117
+ description: "Update a prototype experiment. Pass only the fields you want to change.",
4118
+ inputSchema: {
4119
+ type: "object",
4120
+ properties: {
4121
+ prototypeId: { type: "string", description: "Prototype ID (required)" },
4122
+ title: { type: "string", description: "Updated title" },
4123
+ hypothesis: { type: "string", description: "Updated hypothesis" },
4124
+ type: { type: "string", enum: ["conversation", "experience", "side_project"], description: "Updated type" },
4125
+ status: { type: "string", enum: ["planned", "in_progress", "completed"], description: "Updated status" },
4126
+ odysseyPlanId: { type: "string", description: "Link to Odyssey Plan" },
4127
+ whatYouDid: { type: "string", description: "What you did" },
4128
+ whatYouLearned: { type: "string", description: "What you learned" },
4129
+ nextSteps: { type: "string", description: "Next steps" },
4130
+ startDate: { type: "string", description: "Start date ISO" },
4131
+ completedDate: { type: "string", description: "Completed date ISO" },
4132
+ },
4133
+ required: ["prototypeId"],
4134
+ },
4135
+ },
4136
+ {
4137
+ name: "delete_prototype",
4138
+ description: "Delete a prototype experiment.",
4139
+ inputSchema: {
4140
+ type: "object",
4141
+ properties: {
4142
+ prototypeId: { type: "string", description: "Prototype ID to delete (required)" },
4143
+ },
4144
+ required: ["prototypeId"],
4145
+ },
4146
+ },
4147
+ // ==================== DESIGN INTERVIEWS ====================
4148
+ {
4149
+ name: "get_design_interviews",
4150
+ description: "Get life design interviews — conversations with people living lives you're curious about.",
4151
+ inputSchema: {
4152
+ type: "object",
4153
+ properties: {},
4154
+ },
4155
+ },
4156
+ {
4157
+ name: "create_design_interview",
4158
+ description: "Log a life design interview. Record who you spoke with, questions asked, and key takeaways.",
4159
+ inputSchema: {
4160
+ type: "object",
4161
+ properties: {
4162
+ personName: { type: "string", description: "Person interviewed (required)" },
4163
+ role: { type: "string", description: "Their role/title (required)" },
4164
+ company: { type: "string", description: "Their company" },
4165
+ odysseyPlanId: { type: "string", description: "Link to Odyssey Plan" },
4166
+ questions: {
4167
+ type: "array",
4168
+ items: { type: "string" },
4169
+ description: "Questions asked (required)",
4170
+ },
4171
+ keyTakeaways: {
4172
+ type: "array",
4173
+ items: { type: "string" },
4174
+ description: "Key takeaways (required)",
4175
+ },
4176
+ followUp: { type: "string", description: "Follow-up actions" },
4177
+ interviewDate: { type: "string", description: "Interview date ISO string (required)" },
4178
+ },
4179
+ required: ["personName", "role", "questions", "keyTakeaways", "interviewDate"],
4180
+ },
4181
+ },
4182
+ {
4183
+ name: "update_design_interview",
4184
+ description: "Update a life design interview. Pass only the fields you want to change.",
4185
+ inputSchema: {
4186
+ type: "object",
4187
+ properties: {
4188
+ interviewId: { type: "string", description: "Interview ID (required)" },
4189
+ personName: { type: "string", description: "Updated person name" },
4190
+ role: { type: "string", description: "Updated role" },
4191
+ company: { type: "string", description: "Updated company" },
4192
+ odysseyPlanId: { type: "string", description: "Link to Odyssey Plan" },
4193
+ questions: { type: "array", items: { type: "string" }, description: "Updated questions" },
4194
+ keyTakeaways: { type: "array", items: { type: "string" }, description: "Updated takeaways" },
4195
+ followUp: { type: "string", description: "Updated follow-up" },
4196
+ interviewDate: { type: "string", description: "Updated date ISO string" },
4197
+ },
4198
+ required: ["interviewId"],
4199
+ },
4200
+ },
4201
+ {
4202
+ name: "delete_design_interview",
4203
+ description: "Delete a life design interview.",
4204
+ inputSchema: {
4205
+ type: "object",
4206
+ properties: {
4207
+ interviewId: { type: "string", description: "Interview ID to delete (required)" },
4208
+ },
4209
+ required: ["interviewId"],
4210
+ },
4211
+ },
4212
+ // ==================== BELIEF REFRAMES ====================
4213
+ {
4214
+ name: "get_belief_reframes",
4215
+ description: "Get dysfunctional belief reframes — identify limiting beliefs and reframe them into healthier perspectives.",
4216
+ inputSchema: {
4217
+ type: "object",
4218
+ properties: {},
4219
+ },
4220
+ },
4221
+ {
4222
+ name: "create_belief_reframe",
4223
+ description: "Create a dysfunctional belief reframe. Identify a limiting belief and write a healthier reframe.",
4224
+ inputSchema: {
4225
+ type: "object",
4226
+ properties: {
4227
+ belief: { type: "string", description: "The dysfunctional belief (required)" },
4228
+ reframe: { type: "string", description: "The reframed, healthier perspective (required)" },
4229
+ category: {
4230
+ type: "string",
4231
+ enum: ["career", "identity", "relationship", "capability"],
4232
+ description: "Belief category",
4233
+ },
4234
+ isResolved: { type: "boolean", description: "Whether this belief has been resolved" },
4235
+ },
4236
+ required: ["belief", "reframe"],
4237
+ },
4238
+ },
4239
+ {
4240
+ name: "update_belief_reframe",
4241
+ description: "Update a belief reframe. Pass only the fields you want to change.",
4242
+ inputSchema: {
4243
+ type: "object",
4244
+ properties: {
4245
+ beliefId: { type: "string", description: "Belief reframe ID (required)" },
4246
+ belief: { type: "string", description: "Updated belief" },
4247
+ reframe: { type: "string", description: "Updated reframe" },
4248
+ category: {
4249
+ type: "string",
4250
+ enum: ["career", "identity", "relationship", "capability"],
4251
+ description: "Updated category",
4252
+ },
4253
+ isResolved: { type: "boolean", description: "Mark as resolved" },
4254
+ },
4255
+ required: ["beliefId"],
4256
+ },
4257
+ },
4258
+ // ==================== FAILURE REFRAMES ====================
4259
+ {
4260
+ name: "get_failure_reframes",
4261
+ description: "Get failure reframe log — categorize failures as screw-ups (fixable), weaknesses (manageable), or growth opportunities (learnings).",
4262
+ inputSchema: {
4263
+ type: "object",
4264
+ properties: {
4265
+ category: {
4266
+ type: "string",
4267
+ enum: ["screw_up", "weakness", "growth_opportunity"],
4268
+ description: "Filter by failure category",
4269
+ },
4270
+ },
4271
+ },
4272
+ },
4273
+ {
4274
+ name: "create_failure_reframe",
4275
+ description: "Log a failure and reframe it. Categorize as screw_up (won't do again), weakness (manage around), or growth_opportunity (learn from).",
4276
+ inputSchema: {
4277
+ type: "object",
4278
+ properties: {
4279
+ event: { type: "string", description: "Brief description of the failure event (required)" },
4280
+ category: {
4281
+ type: "string",
4282
+ enum: ["screw_up", "weakness", "growth_opportunity"],
4283
+ description: "Failure category (required)",
4284
+ },
4285
+ whatHappened: { type: "string", description: "Detailed account of what happened (required)" },
4286
+ insight: { type: "string", description: "Insight or lesson learned (required)" },
4287
+ actionTaken: { type: "string", description: "Action taken or planned" },
4288
+ },
4289
+ required: ["event", "category", "whatHappened", "insight"],
4290
+ },
4291
+ },
4292
+ {
4293
+ name: "update_failure_reframe",
4294
+ description: "Update a failure reframe entry. Pass only the fields you want to change.",
4295
+ inputSchema: {
4296
+ type: "object",
4297
+ properties: {
4298
+ failureId: { type: "string", description: "Failure reframe ID (required)" },
4299
+ event: { type: "string", description: "Updated event" },
4300
+ category: {
4301
+ type: "string",
4302
+ enum: ["screw_up", "weakness", "growth_opportunity"],
4303
+ description: "Updated category",
4304
+ },
4305
+ whatHappened: { type: "string", description: "Updated description" },
4306
+ insight: { type: "string", description: "Updated insight" },
4307
+ actionTaken: { type: "string", description: "Updated action taken" },
4308
+ },
4309
+ required: ["failureId"],
4310
+ },
4311
+ },
3820
4312
  // MCP Server Info
3821
4313
  {
3822
4314
  name: "get_version",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starascendin/lifeos-mcp",
3
- "version": "0.7.36",
3
+ "version": "0.7.37",
4
4
  "description": "MCP server for LifeOS Project Management - manage projects, tasks, notes, and contacts via AI assistants",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",