@lucern/mcp 0.3.0-alpha.0 → 0.3.0-alpha.10
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 +12 -7
- package/bin/lucern-mcp.js +1 -1
- package/dist/cli.d.ts +3 -0
- package/dist/cli.js +30072 -0
- package/dist/cli.js.map +1 -0
- package/dist/gateway.d.ts +139 -3
- package/dist/gateway.js +6642 -1063
- package/dist/gateway.js.map +1 -1
- package/dist/hosted-route.d.ts +3 -0
- package/dist/hosted-route.js +29470 -0
- package/dist/hosted-route.js.map +1 -0
- package/dist/index.d.ts +3 -5
- package/dist/index.js +23964 -13965
- package/dist/index.js.map +1 -1
- package/dist/runtime.d.ts +3 -35
- package/dist/runtime.js +5371 -1237
- package/dist/runtime.js.map +1 -1
- package/package.json +20 -8
package/dist/gateway.d.ts
CHANGED
|
@@ -324,6 +324,33 @@ declare function handleGraphNeighborhood(args: {
|
|
|
324
324
|
maxDepth?: number;
|
|
325
325
|
};
|
|
326
326
|
}): Promise<Response>;
|
|
327
|
+
declare function handleGraphNodeList(args: {
|
|
328
|
+
authContext: GatewayAuthContext;
|
|
329
|
+
correlationId: string;
|
|
330
|
+
policyTraceId: string;
|
|
331
|
+
query: {
|
|
332
|
+
nodeId?: string;
|
|
333
|
+
globalId?: string;
|
|
334
|
+
topicId?: string;
|
|
335
|
+
projectId?: string;
|
|
336
|
+
nodeType?: string;
|
|
337
|
+
limit?: number;
|
|
338
|
+
};
|
|
339
|
+
}): Promise<Response>;
|
|
340
|
+
declare function handleGraphEdgeList(args: {
|
|
341
|
+
authContext: GatewayAuthContext;
|
|
342
|
+
correlationId: string;
|
|
343
|
+
policyTraceId: string;
|
|
344
|
+
query: {
|
|
345
|
+
edgeId?: string;
|
|
346
|
+
topicId?: string;
|
|
347
|
+
projectId?: string;
|
|
348
|
+
fromNodeId?: string;
|
|
349
|
+
toNodeId?: string;
|
|
350
|
+
edgeType?: string;
|
|
351
|
+
limit?: number;
|
|
352
|
+
};
|
|
353
|
+
}): Promise<Response>;
|
|
327
354
|
declare function handleGraphTraverse(args: {
|
|
328
355
|
authContext: GatewayAuthContext;
|
|
329
356
|
correlationId: string;
|
|
@@ -366,6 +393,101 @@ declare function handleGraphFalsify(args: {
|
|
|
366
393
|
body: unknown;
|
|
367
394
|
}): Promise<Response>;
|
|
368
395
|
|
|
396
|
+
type QueryRecord = Record<string, unknown>;
|
|
397
|
+
declare function handleGraphAnalysisSave(args: {
|
|
398
|
+
authContext: GatewayAuthContext;
|
|
399
|
+
correlationId: string;
|
|
400
|
+
policyTraceId: string;
|
|
401
|
+
body: unknown;
|
|
402
|
+
}): Promise<Response>;
|
|
403
|
+
declare function handleGraphAnalysisList(args: {
|
|
404
|
+
authContext: GatewayAuthContext;
|
|
405
|
+
correlationId: string;
|
|
406
|
+
policyTraceId: string;
|
|
407
|
+
query: QueryRecord;
|
|
408
|
+
}): Promise<Response>;
|
|
409
|
+
declare function handleGraphAnalysisLatest(args: {
|
|
410
|
+
authContext: GatewayAuthContext;
|
|
411
|
+
correlationId: string;
|
|
412
|
+
policyTraceId: string;
|
|
413
|
+
query: QueryRecord;
|
|
414
|
+
}): Promise<Response>;
|
|
415
|
+
declare function handleGraphAnalysisSaveSuggestions(args: {
|
|
416
|
+
authContext: GatewayAuthContext;
|
|
417
|
+
correlationId: string;
|
|
418
|
+
policyTraceId: string;
|
|
419
|
+
body: unknown;
|
|
420
|
+
}): Promise<Response>;
|
|
421
|
+
declare function handleGraphAnalysisListSuggestions(args: {
|
|
422
|
+
authContext: GatewayAuthContext;
|
|
423
|
+
correlationId: string;
|
|
424
|
+
policyTraceId: string;
|
|
425
|
+
query: QueryRecord;
|
|
426
|
+
}): Promise<Response>;
|
|
427
|
+
declare function handleGraphAnalysisListChanges(args: {
|
|
428
|
+
authContext: GatewayAuthContext;
|
|
429
|
+
correlationId: string;
|
|
430
|
+
policyTraceId: string;
|
|
431
|
+
query: QueryRecord;
|
|
432
|
+
}): Promise<Response>;
|
|
433
|
+
declare function handleGraphAnalysisUpdateSuggestion(args: {
|
|
434
|
+
authContext: GatewayAuthContext;
|
|
435
|
+
correlationId: string;
|
|
436
|
+
policyTraceId: string;
|
|
437
|
+
suggestionId: string;
|
|
438
|
+
body: unknown;
|
|
439
|
+
}): Promise<Response>;
|
|
440
|
+
declare function handleGraphAnalysisCompute(args: {
|
|
441
|
+
authContext: GatewayAuthContext;
|
|
442
|
+
correlationId: string;
|
|
443
|
+
policyTraceId: string;
|
|
444
|
+
body: unknown;
|
|
445
|
+
}): Promise<Response>;
|
|
446
|
+
declare function handleGraphRecommendationsList(args: {
|
|
447
|
+
authContext: GatewayAuthContext;
|
|
448
|
+
correlationId: string;
|
|
449
|
+
policyTraceId: string;
|
|
450
|
+
query: QueryRecord;
|
|
451
|
+
}): Promise<Response>;
|
|
452
|
+
declare function handleGraphRecommendationGet(args: {
|
|
453
|
+
authContext: GatewayAuthContext;
|
|
454
|
+
correlationId: string;
|
|
455
|
+
policyTraceId: string;
|
|
456
|
+
recommendationId: string;
|
|
457
|
+
}): Promise<Response>;
|
|
458
|
+
declare function handleGraphRecommendationStatus(args: {
|
|
459
|
+
authContext: GatewayAuthContext;
|
|
460
|
+
correlationId: string;
|
|
461
|
+
policyTraceId: string;
|
|
462
|
+
recommendationId: string;
|
|
463
|
+
body: unknown;
|
|
464
|
+
}): Promise<Response>;
|
|
465
|
+
declare function handleOrgGraphSearch(args: {
|
|
466
|
+
authContext: GatewayAuthContext;
|
|
467
|
+
correlationId: string;
|
|
468
|
+
policyTraceId: string;
|
|
469
|
+
body: unknown;
|
|
470
|
+
}): Promise<Response>;
|
|
471
|
+
declare function handleOrgGraphNodeGet(args: {
|
|
472
|
+
authContext: GatewayAuthContext;
|
|
473
|
+
correlationId: string;
|
|
474
|
+
policyTraceId: string;
|
|
475
|
+
nodeId: string;
|
|
476
|
+
query: QueryRecord;
|
|
477
|
+
}): Promise<Response>;
|
|
478
|
+
declare function handleOrgGraphByProvenance(args: {
|
|
479
|
+
authContext: GatewayAuthContext;
|
|
480
|
+
correlationId: string;
|
|
481
|
+
policyTraceId: string;
|
|
482
|
+
query: QueryRecord;
|
|
483
|
+
}): Promise<Response>;
|
|
484
|
+
declare function handleOrgGraphPublished(args: {
|
|
485
|
+
authContext: GatewayAuthContext;
|
|
486
|
+
correlationId: string;
|
|
487
|
+
policyTraceId: string;
|
|
488
|
+
query: QueryRecord;
|
|
489
|
+
}): Promise<Response>;
|
|
490
|
+
|
|
369
491
|
declare function handleIdentityWhoami(args: {
|
|
370
492
|
authContext: GatewayAuthContext;
|
|
371
493
|
correlationId: string;
|
|
@@ -693,6 +815,9 @@ declare function handleWorktreeList(args: {
|
|
|
693
815
|
query: {
|
|
694
816
|
topicId?: string;
|
|
695
817
|
status?: string;
|
|
818
|
+
groupBy?: string;
|
|
819
|
+
lane?: string;
|
|
820
|
+
campaign?: number;
|
|
696
821
|
limit?: number;
|
|
697
822
|
};
|
|
698
823
|
}): Promise<Response>;
|
|
@@ -702,8 +827,19 @@ declare function handleWorktreeListAll(args: {
|
|
|
702
827
|
policyTraceId: string;
|
|
703
828
|
query: {
|
|
704
829
|
status?: string;
|
|
705
|
-
|
|
706
|
-
|
|
830
|
+
lane?: string;
|
|
831
|
+
campaign?: number;
|
|
832
|
+
groupBy?: string;
|
|
833
|
+
limit?: number;
|
|
834
|
+
};
|
|
835
|
+
}): Promise<Response>;
|
|
836
|
+
declare function handleWorktreeListCampaigns(args: {
|
|
837
|
+
authContext: GatewayAuthContext;
|
|
838
|
+
correlationId: string;
|
|
839
|
+
policyTraceId: string;
|
|
840
|
+
query: {
|
|
841
|
+
topicId?: string;
|
|
842
|
+
status?: string;
|
|
707
843
|
limit?: number;
|
|
708
844
|
};
|
|
709
845
|
}): Promise<Response>;
|
|
@@ -765,4 +901,4 @@ declare function handleWorktreeBulkCreate(args: {
|
|
|
765
901
|
body: unknown;
|
|
766
902
|
}): Promise<Response>;
|
|
767
903
|
|
|
768
|
-
export { handleBeliefArchive, handleBeliefBatchUpdateCriticality, handleBeliefBisect, handleBeliefConfidenceHistory, handleBeliefCreate, handleBeliefCreateContract, handleBeliefFork, handleBeliefGet, handleBeliefLineage, handleBeliefLink, handleBeliefList, handleBeliefReassignTopic, handleBeliefRefine, handleBeliefRelationships, handleBeliefUnlinkEvidence, handleBeliefUpdateConfidence, handleBeliefUpdateCriticality, handleBeliefUpdateRationale, handleBeliefUpdateStatus, handleContradictionFlag, handleContradictionGet, handleContradictionList, handleEdgeBatchCreate, handleEdgeCreate, handleEdgeDelete, handleEdgeList, handleEdgeRemove, handleEdgeTraverse, handleEdgeUpdate, handleEdgesRemoveBetween, handleEventsList, handleEventsReplay, handleEvidenceClassify, handleEvidenceClassifyBatch, handleEvidenceCreate, handleEvidenceFlagIncorrect, handleEvidenceGet, handleEvidenceLink, handleEvidenceList, handleEvidenceRemove, handleEvidenceSearch, handleEvidenceUpdate, handleEvidenceUpdateStatus, handleEvidenceUpdateVerificationStatus, handleGraphAnalyze, handleGraphBias, handleGraphFalsify, handleGraphGaps, handleGraphNeighborhood, handleGraphTraverse, handleIdentityWhoami, handleOntologyBind, handleOntologyGet, handleOntologyList, handleOntologyMatch, handleQuestionAdd, handleQuestionAdvanceToConviction, handleQuestionAnswer, handleQuestionArchive, handleQuestionBatchCreate, handleQuestionCreate, handleQuestionDelete, handleQuestionFinalizeConviction, handleQuestionGet, handleQuestionGetAnswer, handleQuestionList, handleQuestionRefine, handleQuestionUpdate, handleQuestionUpdateConviction, handleQuestionUpdatePriority, handleQuestionUpdateStatus, handleSearchResources, handleSourceGet, handleSourceUpsert, handleTaskComplete, handleTaskCreate, handleTaskList, handleTaskUpdate, handleTopicBulkCreate, handleTopicCoverage, handleTopicCreate, handleTopicGet, handleTopicList, handleTopicRemove, handleTopicTree, handleTopicUpdate, handleWebhookCreate, handleWebhookDelete, handleWebhookDeliveries, handleWebhookGet, handleWebhookHealth, handleWebhookList, handleWebhookTest, handleWebhookUpdate, handleWorktreeActivate, handleWorktreeAdvancePhase, handleWorktreeBulkCreate, handleWorktreeComplete, handleWorktreeCreate, handleWorktreeList, handleWorktreeListAll, handleWorktreeMerge, handleWorktreePatchState, handleWorktreeSetPhase, handleWorktreeUpdate, handleWorktreeUpdateTargets };
|
|
904
|
+
export { handleBeliefArchive, handleBeliefBatchUpdateCriticality, handleBeliefBisect, handleBeliefConfidenceHistory, handleBeliefCreate, handleBeliefCreateContract, handleBeliefFork, handleBeliefGet, handleBeliefLineage, handleBeliefLink, handleBeliefList, handleBeliefReassignTopic, handleBeliefRefine, handleBeliefRelationships, handleBeliefUnlinkEvidence, handleBeliefUpdateConfidence, handleBeliefUpdateCriticality, handleBeliefUpdateRationale, handleBeliefUpdateStatus, handleContradictionFlag, handleContradictionGet, handleContradictionList, handleEdgeBatchCreate, handleEdgeCreate, handleEdgeDelete, handleEdgeList, handleEdgeRemove, handleEdgeTraverse, handleEdgeUpdate, handleEdgesRemoveBetween, handleEventsList, handleEventsReplay, handleEvidenceClassify, handleEvidenceClassifyBatch, handleEvidenceCreate, handleEvidenceFlagIncorrect, handleEvidenceGet, handleEvidenceLink, handleEvidenceList, handleEvidenceRemove, handleEvidenceSearch, handleEvidenceUpdate, handleEvidenceUpdateStatus, handleEvidenceUpdateVerificationStatus, handleGraphAnalysisCompute, handleGraphAnalysisLatest, handleGraphAnalysisList, handleGraphAnalysisListChanges, handleGraphAnalysisListSuggestions, handleGraphAnalysisSave, handleGraphAnalysisSaveSuggestions, handleGraphAnalysisUpdateSuggestion, handleGraphAnalyze, handleGraphBias, handleGraphEdgeList, handleGraphFalsify, handleGraphGaps, handleGraphNeighborhood, handleGraphNodeList, handleGraphRecommendationGet, handleGraphRecommendationStatus, handleGraphRecommendationsList, handleGraphTraverse, handleIdentityWhoami, handleOntologyBind, handleOntologyGet, handleOntologyList, handleOntologyMatch, handleOrgGraphByProvenance, handleOrgGraphNodeGet, handleOrgGraphPublished, handleOrgGraphSearch, handleQuestionAdd, handleQuestionAdvanceToConviction, handleQuestionAnswer, handleQuestionArchive, handleQuestionBatchCreate, handleQuestionCreate, handleQuestionDelete, handleQuestionFinalizeConviction, handleQuestionGet, handleQuestionGetAnswer, handleQuestionList, handleQuestionRefine, handleQuestionUpdate, handleQuestionUpdateConviction, handleQuestionUpdatePriority, handleQuestionUpdateStatus, handleSearchResources, handleSourceGet, handleSourceUpsert, handleTaskComplete, handleTaskCreate, handleTaskList, handleTaskUpdate, handleTopicBulkCreate, handleTopicCoverage, handleTopicCreate, handleTopicGet, handleTopicList, handleTopicRemove, handleTopicTree, handleTopicUpdate, handleWebhookCreate, handleWebhookDelete, handleWebhookDeliveries, handleWebhookGet, handleWebhookHealth, handleWebhookList, handleWebhookTest, handleWebhookUpdate, handleWorktreeActivate, handleWorktreeAdvancePhase, handleWorktreeBulkCreate, handleWorktreeComplete, handleWorktreeCreate, handleWorktreeList, handleWorktreeListAll, handleWorktreeListCampaigns, handleWorktreeMerge, handleWorktreePatchState, handleWorktreeSetPhase, handleWorktreeUpdate, handleWorktreeUpdateTargets };
|