@rvry/mcp 0.4.0 → 0.4.1
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/setup.js +11 -10
- package/package.json +1 -1
package/dist/setup.js
CHANGED
|
@@ -927,6 +927,17 @@ export async function runSetup() {
|
|
|
927
927
|
console.log(` ${step}. Restart desktop apps for the new MCP server to load`);
|
|
928
928
|
step++;
|
|
929
929
|
}
|
|
930
|
+
// Generic MCP config for any client
|
|
931
|
+
console.log(` ${step}. Add RVRY to any other MCP-compatible client —`);
|
|
932
|
+
console.log(' add this to your MCP config:');
|
|
933
|
+
console.log('');
|
|
934
|
+
const mcpBlock = { rvry: RVRY_SERVER_ENTRY('YOUR_RVRY_TOKEN') };
|
|
935
|
+
const lines = JSON.stringify(mcpBlock, null, 2).split('\n');
|
|
936
|
+
for (const line of lines.slice(1, -1)) {
|
|
937
|
+
console.log(` ${line}`);
|
|
938
|
+
}
|
|
939
|
+
console.log('');
|
|
940
|
+
step++;
|
|
930
941
|
if (hasCodeStyle) {
|
|
931
942
|
console.log(` ${step}. In Claude Code, try:`);
|
|
932
943
|
console.log(' /deepthink "your question"');
|
|
@@ -942,14 +953,4 @@ export async function runSetup() {
|
|
|
942
953
|
console.log(' 1. Configure a client using the manual instructions above');
|
|
943
954
|
console.log(' 2. Then try: /deepthink "your question"');
|
|
944
955
|
}
|
|
945
|
-
// Generic MCP config for any client
|
|
946
|
-
console.log(` ${step}. Add RVRY to any other MCP-compatible client —`);
|
|
947
|
-
console.log(' add this to your MCP config:');
|
|
948
|
-
console.log('');
|
|
949
|
-
const mcpBlock = { rvry: RVRY_SERVER_ENTRY('YOUR_RVRY_TOKEN') };
|
|
950
|
-
const lines = JSON.stringify(mcpBlock, null, 2).split('\n');
|
|
951
|
-
for (const line of lines.slice(1, -1)) {
|
|
952
|
-
console.log(` ${line}`);
|
|
953
|
-
}
|
|
954
|
-
console.log('');
|
|
955
956
|
}
|