@vibekiln/cutline-mcp-cli 0.1.0
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/Dockerfile +11 -0
- package/README.md +248 -0
- package/dist/auth/callback.d.ts +6 -0
- package/dist/auth/callback.js +97 -0
- package/dist/auth/keychain.d.ts +3 -0
- package/dist/auth/keychain.js +16 -0
- package/dist/commands/init.d.ts +4 -0
- package/dist/commands/init.js +309 -0
- package/dist/commands/login.d.ts +7 -0
- package/dist/commands/login.js +166 -0
- package/dist/commands/logout.d.ts +1 -0
- package/dist/commands/logout.js +25 -0
- package/dist/commands/serve.d.ts +1 -0
- package/dist/commands/serve.js +38 -0
- package/dist/commands/setup.d.ts +5 -0
- package/dist/commands/setup.js +278 -0
- package/dist/commands/status.d.ts +3 -0
- package/dist/commands/status.js +127 -0
- package/dist/commands/upgrade.d.ts +3 -0
- package/dist/commands/upgrade.js +112 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +64 -0
- package/dist/servers/chunk-DE7R7WKY.js +331 -0
- package/dist/servers/chunk-KMUSQOTJ.js +47 -0
- package/dist/servers/chunk-OP4EO6FV.js +454 -0
- package/dist/servers/chunk-UBBAYTW3.js +946 -0
- package/dist/servers/chunk-ZVWDXO6M.js +1063 -0
- package/dist/servers/cutline-server.js +10448 -0
- package/dist/servers/data-client-FPUZBUO3.js +160 -0
- package/dist/servers/exploration-server.js +930 -0
- package/dist/servers/graph-metrics-DCNR7JZN.js +12 -0
- package/dist/servers/integrations-server.js +107 -0
- package/dist/servers/output-server.js +107 -0
- package/dist/servers/premortem-server.js +971 -0
- package/dist/servers/tools-server.js +287 -0
- package/dist/utils/config-store.d.ts +8 -0
- package/dist/utils/config-store.js +35 -0
- package/dist/utils/config.d.ts +22 -0
- package/dist/utils/config.js +48 -0
- package/mcpb/manifest.json +77 -0
- package/package.json +76 -0
- package/server.json +42 -0
- package/smithery.yaml +10 -0
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import {
|
|
2
|
+
addEdges,
|
|
3
|
+
addEntity,
|
|
4
|
+
addNodes,
|
|
5
|
+
addTestCases,
|
|
6
|
+
cfApplyEdits,
|
|
7
|
+
cfBuildAndUploadPdf,
|
|
8
|
+
cfChatWithPersona,
|
|
9
|
+
cfConsultingDiscoveryAgent,
|
|
10
|
+
cfCreateLinearIssues,
|
|
11
|
+
cfExplorationAgent,
|
|
12
|
+
cfGenerateAnswer,
|
|
13
|
+
cfGenerateChatSuggestion,
|
|
14
|
+
cfGenerateEmbeddings,
|
|
15
|
+
cfGenerateExplorationResponse,
|
|
16
|
+
cfGenerateStructuredContent,
|
|
17
|
+
cfGenerateTemplateResponse,
|
|
18
|
+
cfGenerateTrialRun,
|
|
19
|
+
cfGetWikiMarkdown,
|
|
20
|
+
cfPremortemChatAgent,
|
|
21
|
+
cfPremortemKick,
|
|
22
|
+
cfPremortemRun,
|
|
23
|
+
cfPremortemStart,
|
|
24
|
+
cfRegenAssumptions,
|
|
25
|
+
cfRegenExperiments,
|
|
26
|
+
cfSaveWikiMarkdown,
|
|
27
|
+
createExplorationSession,
|
|
28
|
+
createPremortem,
|
|
29
|
+
createTemplate,
|
|
30
|
+
deleteAllNodes,
|
|
31
|
+
deleteBinding,
|
|
32
|
+
deleteGraphData,
|
|
33
|
+
generateReadinessReportViaProxy,
|
|
34
|
+
getAllBindings,
|
|
35
|
+
getAllEdges,
|
|
36
|
+
getAllEntities,
|
|
37
|
+
getAllNodes,
|
|
38
|
+
getAllNodesLight,
|
|
39
|
+
getBindingsForEntity,
|
|
40
|
+
getChat,
|
|
41
|
+
getEntitiesWithEmbeddings,
|
|
42
|
+
getEntityById,
|
|
43
|
+
getExplorationSession,
|
|
44
|
+
getGraphMetadata,
|
|
45
|
+
getIdeaReport,
|
|
46
|
+
getNodesByCategories,
|
|
47
|
+
getNodesBySource,
|
|
48
|
+
getNodesMissingEmbeddings,
|
|
49
|
+
getNodesWithEmbeddings,
|
|
50
|
+
getPersona,
|
|
51
|
+
getPodcastIntroductions,
|
|
52
|
+
getPremortem,
|
|
53
|
+
getReadinessReport,
|
|
54
|
+
getScanRateLimit,
|
|
55
|
+
getTemplate,
|
|
56
|
+
getTestCasesForEntity,
|
|
57
|
+
getTestCasesForProduct,
|
|
58
|
+
hasConstraints,
|
|
59
|
+
listExplorationSessions,
|
|
60
|
+
listPersonas,
|
|
61
|
+
listPremortems,
|
|
62
|
+
listTemplates,
|
|
63
|
+
recordScoreSnapshot,
|
|
64
|
+
saveChat,
|
|
65
|
+
saveReadinessReport,
|
|
66
|
+
saveScanReport,
|
|
67
|
+
searchNodesByKeywords,
|
|
68
|
+
updateChat,
|
|
69
|
+
updateEntityEmbedding,
|
|
70
|
+
updateExplorationSession,
|
|
71
|
+
updateGraphMetadata,
|
|
72
|
+
updateNodeEmbeddings,
|
|
73
|
+
updatePremortem,
|
|
74
|
+
updateScanRateLimit,
|
|
75
|
+
updateTemplate,
|
|
76
|
+
upsertBindings,
|
|
77
|
+
upsertEdges,
|
|
78
|
+
upsertEntities,
|
|
79
|
+
upsertNodes
|
|
80
|
+
} from "./chunk-ZVWDXO6M.js";
|
|
81
|
+
export {
|
|
82
|
+
addEdges,
|
|
83
|
+
addEntity,
|
|
84
|
+
addNodes,
|
|
85
|
+
addTestCases,
|
|
86
|
+
cfApplyEdits,
|
|
87
|
+
cfBuildAndUploadPdf,
|
|
88
|
+
cfChatWithPersona,
|
|
89
|
+
cfConsultingDiscoveryAgent,
|
|
90
|
+
cfCreateLinearIssues,
|
|
91
|
+
cfExplorationAgent,
|
|
92
|
+
cfGenerateAnswer,
|
|
93
|
+
cfGenerateChatSuggestion,
|
|
94
|
+
cfGenerateEmbeddings,
|
|
95
|
+
cfGenerateExplorationResponse,
|
|
96
|
+
cfGenerateStructuredContent,
|
|
97
|
+
cfGenerateTemplateResponse,
|
|
98
|
+
cfGenerateTrialRun,
|
|
99
|
+
cfGetWikiMarkdown,
|
|
100
|
+
cfPremortemChatAgent,
|
|
101
|
+
cfPremortemKick,
|
|
102
|
+
cfPremortemRun,
|
|
103
|
+
cfPremortemStart,
|
|
104
|
+
cfRegenAssumptions,
|
|
105
|
+
cfRegenExperiments,
|
|
106
|
+
cfSaveWikiMarkdown,
|
|
107
|
+
createExplorationSession,
|
|
108
|
+
createPremortem,
|
|
109
|
+
createTemplate,
|
|
110
|
+
deleteAllNodes,
|
|
111
|
+
deleteBinding,
|
|
112
|
+
deleteGraphData,
|
|
113
|
+
generateReadinessReportViaProxy,
|
|
114
|
+
getAllBindings,
|
|
115
|
+
getAllEdges,
|
|
116
|
+
getAllEntities,
|
|
117
|
+
getAllNodes,
|
|
118
|
+
getAllNodesLight,
|
|
119
|
+
getBindingsForEntity,
|
|
120
|
+
getChat,
|
|
121
|
+
getEntitiesWithEmbeddings,
|
|
122
|
+
getEntityById,
|
|
123
|
+
getExplorationSession,
|
|
124
|
+
getGraphMetadata,
|
|
125
|
+
getIdeaReport,
|
|
126
|
+
getNodesByCategories,
|
|
127
|
+
getNodesBySource,
|
|
128
|
+
getNodesMissingEmbeddings,
|
|
129
|
+
getNodesWithEmbeddings,
|
|
130
|
+
getPersona,
|
|
131
|
+
getPodcastIntroductions,
|
|
132
|
+
getPremortem,
|
|
133
|
+
getReadinessReport,
|
|
134
|
+
getScanRateLimit,
|
|
135
|
+
getTemplate,
|
|
136
|
+
getTestCasesForEntity,
|
|
137
|
+
getTestCasesForProduct,
|
|
138
|
+
hasConstraints,
|
|
139
|
+
listExplorationSessions,
|
|
140
|
+
listPersonas,
|
|
141
|
+
listPremortems,
|
|
142
|
+
listTemplates,
|
|
143
|
+
recordScoreSnapshot,
|
|
144
|
+
saveChat,
|
|
145
|
+
saveReadinessReport,
|
|
146
|
+
saveScanReport,
|
|
147
|
+
searchNodesByKeywords,
|
|
148
|
+
updateChat,
|
|
149
|
+
updateEntityEmbedding,
|
|
150
|
+
updateExplorationSession,
|
|
151
|
+
updateGraphMetadata,
|
|
152
|
+
updateNodeEmbeddings,
|
|
153
|
+
updatePremortem,
|
|
154
|
+
updateScanRateLimit,
|
|
155
|
+
updateTemplate,
|
|
156
|
+
upsertBindings,
|
|
157
|
+
upsertEdges,
|
|
158
|
+
upsertEntities,
|
|
159
|
+
upsertNodes
|
|
160
|
+
};
|