@memoraone/mcp 0.1.45 → 0.1.47
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/dist/cli.cjs +33 -3
- package/dist/pluginPairing.cjs +32 -2
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -231,7 +231,7 @@ var require_package = __commonJS({
|
|
|
231
231
|
"package.json"(exports2, module2) {
|
|
232
232
|
module2.exports = {
|
|
233
233
|
name: "@memoraone/mcp",
|
|
234
|
-
version: "0.1.
|
|
234
|
+
version: "0.1.47",
|
|
235
235
|
type: "module",
|
|
236
236
|
main: "dist/index.cjs",
|
|
237
237
|
exports: {
|
|
@@ -12853,8 +12853,38 @@ var init_pluginPairing = __esm({
|
|
|
12853
12853
|
apiUrl: this.apiUrl,
|
|
12854
12854
|
ideType: this.source,
|
|
12855
12855
|
fetchImpl: this.connectOptions.fetchImpl ?? this.fetchImpl,
|
|
12856
|
-
//
|
|
12857
|
-
configureIdes:
|
|
12856
|
+
// Plugin pairing configures only the IDE that initiated the pairing.
|
|
12857
|
+
configureIdes: this.source !== "cursor",
|
|
12858
|
+
setupIdeOptions: {
|
|
12859
|
+
...this.connectOptions.setupIdeOptions,
|
|
12860
|
+
targets: {
|
|
12861
|
+
cursor: this.source === "cursor",
|
|
12862
|
+
vscode: false,
|
|
12863
|
+
jetbrains: this.source === "jetbrains",
|
|
12864
|
+
claudeCode: false,
|
|
12865
|
+
windsurf: false,
|
|
12866
|
+
opencode: false,
|
|
12867
|
+
codex: false,
|
|
12868
|
+
kiro: false,
|
|
12869
|
+
kiroCli: false,
|
|
12870
|
+
rooCode: false,
|
|
12871
|
+
cline: false,
|
|
12872
|
+
clineCli: false,
|
|
12873
|
+
claudeDesktop: false,
|
|
12874
|
+
zed: false,
|
|
12875
|
+
visualStudio: false,
|
|
12876
|
+
continue: false,
|
|
12877
|
+
copilotCli: false,
|
|
12878
|
+
auggie: false,
|
|
12879
|
+
geminiCli: false,
|
|
12880
|
+
antigravity: false,
|
|
12881
|
+
goose: false,
|
|
12882
|
+
junie: false,
|
|
12883
|
+
xcode: false,
|
|
12884
|
+
copilotJetBrains: false,
|
|
12885
|
+
copilotVisualStudio: false
|
|
12886
|
+
}
|
|
12887
|
+
}
|
|
12858
12888
|
});
|
|
12859
12889
|
if (connected.exitCode !== 0) {
|
|
12860
12890
|
this.finish("backend_failure");
|
package/dist/pluginPairing.cjs
CHANGED
|
@@ -9981,8 +9981,38 @@ var PluginRepositoryPairingSession = class {
|
|
|
9981
9981
|
apiUrl: this.apiUrl,
|
|
9982
9982
|
ideType: this.source,
|
|
9983
9983
|
fetchImpl: this.connectOptions.fetchImpl ?? this.fetchImpl,
|
|
9984
|
-
//
|
|
9985
|
-
configureIdes:
|
|
9984
|
+
// Plugin pairing configures only the IDE that initiated the pairing.
|
|
9985
|
+
configureIdes: this.source !== "cursor",
|
|
9986
|
+
setupIdeOptions: {
|
|
9987
|
+
...this.connectOptions.setupIdeOptions,
|
|
9988
|
+
targets: {
|
|
9989
|
+
cursor: this.source === "cursor",
|
|
9990
|
+
vscode: false,
|
|
9991
|
+
jetbrains: this.source === "jetbrains",
|
|
9992
|
+
claudeCode: false,
|
|
9993
|
+
windsurf: false,
|
|
9994
|
+
opencode: false,
|
|
9995
|
+
codex: false,
|
|
9996
|
+
kiro: false,
|
|
9997
|
+
kiroCli: false,
|
|
9998
|
+
rooCode: false,
|
|
9999
|
+
cline: false,
|
|
10000
|
+
clineCli: false,
|
|
10001
|
+
claudeDesktop: false,
|
|
10002
|
+
zed: false,
|
|
10003
|
+
visualStudio: false,
|
|
10004
|
+
continue: false,
|
|
10005
|
+
copilotCli: false,
|
|
10006
|
+
auggie: false,
|
|
10007
|
+
geminiCli: false,
|
|
10008
|
+
antigravity: false,
|
|
10009
|
+
goose: false,
|
|
10010
|
+
junie: false,
|
|
10011
|
+
xcode: false,
|
|
10012
|
+
copilotJetBrains: false,
|
|
10013
|
+
copilotVisualStudio: false
|
|
10014
|
+
}
|
|
10015
|
+
}
|
|
9986
10016
|
});
|
|
9987
10017
|
if (connected.exitCode !== 0) {
|
|
9988
10018
|
this.finish("backend_failure");
|