@lucern/mcp 0.3.0-alpha.2 → 0.3.0-alpha.3
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 +23370 -0
- package/dist/cli.js.map +1 -0
- package/dist/gateway.d.ts +117 -1
- package/dist/gateway.js +658 -53
- package/dist/gateway.js.map +1 -1
- package/dist/hosted-route.js +2586 -517
- package/dist/hosted-route.js.map +1 -1
- package/dist/index.d.ts +2 -5
- package/dist/index.js +2854 -618
- package/dist/index.js.map +1 -1
- package/dist/runtime.d.ts +2 -34
- package/dist/runtime.js +145 -686
- package/dist/runtime.js.map +1 -1
- package/package.json +6 -6
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,95 @@ 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 handleGraphAnalysisUpdateSuggestion(args: {
|
|
428
|
+
authContext: GatewayAuthContext;
|
|
429
|
+
correlationId: string;
|
|
430
|
+
policyTraceId: string;
|
|
431
|
+
suggestionId: string;
|
|
432
|
+
body: unknown;
|
|
433
|
+
}): Promise<Response>;
|
|
434
|
+
declare function handleGraphAnalysisCompute(args: {
|
|
435
|
+
authContext: GatewayAuthContext;
|
|
436
|
+
correlationId: string;
|
|
437
|
+
policyTraceId: string;
|
|
438
|
+
body: unknown;
|
|
439
|
+
}): Promise<Response>;
|
|
440
|
+
declare function handleGraphRecommendationsList(args: {
|
|
441
|
+
authContext: GatewayAuthContext;
|
|
442
|
+
correlationId: string;
|
|
443
|
+
policyTraceId: string;
|
|
444
|
+
query: QueryRecord;
|
|
445
|
+
}): Promise<Response>;
|
|
446
|
+
declare function handleGraphRecommendationGet(args: {
|
|
447
|
+
authContext: GatewayAuthContext;
|
|
448
|
+
correlationId: string;
|
|
449
|
+
policyTraceId: string;
|
|
450
|
+
recommendationId: string;
|
|
451
|
+
}): Promise<Response>;
|
|
452
|
+
declare function handleGraphRecommendationStatus(args: {
|
|
453
|
+
authContext: GatewayAuthContext;
|
|
454
|
+
correlationId: string;
|
|
455
|
+
policyTraceId: string;
|
|
456
|
+
recommendationId: string;
|
|
457
|
+
body: unknown;
|
|
458
|
+
}): Promise<Response>;
|
|
459
|
+
declare function handleOrgGraphSearch(args: {
|
|
460
|
+
authContext: GatewayAuthContext;
|
|
461
|
+
correlationId: string;
|
|
462
|
+
policyTraceId: string;
|
|
463
|
+
body: unknown;
|
|
464
|
+
}): Promise<Response>;
|
|
465
|
+
declare function handleOrgGraphNodeGet(args: {
|
|
466
|
+
authContext: GatewayAuthContext;
|
|
467
|
+
correlationId: string;
|
|
468
|
+
policyTraceId: string;
|
|
469
|
+
nodeId: string;
|
|
470
|
+
query: QueryRecord;
|
|
471
|
+
}): Promise<Response>;
|
|
472
|
+
declare function handleOrgGraphByProvenance(args: {
|
|
473
|
+
authContext: GatewayAuthContext;
|
|
474
|
+
correlationId: string;
|
|
475
|
+
policyTraceId: string;
|
|
476
|
+
query: QueryRecord;
|
|
477
|
+
}): Promise<Response>;
|
|
478
|
+
declare function handleOrgGraphPublished(args: {
|
|
479
|
+
authContext: GatewayAuthContext;
|
|
480
|
+
correlationId: string;
|
|
481
|
+
policyTraceId: string;
|
|
482
|
+
query: QueryRecord;
|
|
483
|
+
}): Promise<Response>;
|
|
484
|
+
|
|
369
485
|
declare function handleIdentityWhoami(args: {
|
|
370
486
|
authContext: GatewayAuthContext;
|
|
371
487
|
correlationId: string;
|
|
@@ -779,4 +895,4 @@ declare function handleWorktreeBulkCreate(args: {
|
|
|
779
895
|
body: unknown;
|
|
780
896
|
}): Promise<Response>;
|
|
781
897
|
|
|
782
|
-
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, handleWorktreeListCampaigns, handleWorktreeMerge, handleWorktreePatchState, handleWorktreeSetPhase, handleWorktreeUpdate, handleWorktreeUpdateTargets };
|
|
898
|
+
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, 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 };
|