@rvry/mcp 0.11.1 → 0.11.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 +7 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/setup.d.ts +4 -4
- package/dist/setup.js +15 -10
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ RVRY is an MCP server that improves AI reliability by forcing your model to fini
|
|
|
7
7
|
## Quick Start
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npx @rvry/mcp@latest setup
|
|
10
|
+
npx --yes --package @rvry/mcp@latest rvry-mcp setup
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
The wizard will:
|
|
@@ -27,7 +27,7 @@ For any MCP client that supports **stdio transport** (runs a local process), add
|
|
|
27
27
|
{
|
|
28
28
|
"rvry": {
|
|
29
29
|
"command": "npx",
|
|
30
|
-
"args": ["@rvry/mcp"],
|
|
30
|
+
"args": ["--yes", "--package", "@rvry/mcp@latest", "rvry-mcp"],
|
|
31
31
|
"env": {
|
|
32
32
|
"RVRY_TOKEN": "your_rvry_token"
|
|
33
33
|
}
|
|
@@ -51,7 +51,7 @@ RVRY supports both **stdio** and **HTTP** transports:
|
|
|
51
51
|
|
|
52
52
|
| Transport | Client | Setup |
|
|
53
53
|
|-----------|--------|-------|
|
|
54
|
-
| stdio | Claude Code, Claude Desktop, Cursor, Gemini CLI, Codex, Anti-Gravity | `npx @rvry/mcp@latest setup` |
|
|
54
|
+
| stdio | Claude Code, Claude Desktop, Cursor, Gemini CLI, Codex, Anti-Gravity | `npx --yes --package @rvry/mcp@latest rvry-mcp setup` |
|
|
55
55
|
| stdio | Any client with `command` + `args` config | Manual JSON config (see above) |
|
|
56
56
|
| HTTP | ChatGPT (custom GPTs), Perplexity, any HTTP MCP client | URL: `https://engine.rvry.ai/mcp` |
|
|
57
57
|
|
|
@@ -60,6 +60,7 @@ RVRY supports both **stdio** and **HTTP** transports:
|
|
|
60
60
|
| Tool | What it does | Tier |
|
|
61
61
|
|------|-------------|------|
|
|
62
62
|
| **`RVRY_deepthink`** | Extended multi-round analysis. Catches assumptions, tests them, and doesn't let your AI wrap up until it's dealt with what it found. | All |
|
|
63
|
+
| **`RVRY_think`** | Lighter single-session analysis for questions that need structure but not the full deepthink loop. | All |
|
|
63
64
|
| **`RVRY_problem_solve`** | Structured decision-making. Forces orientation, anticipation, and evaluation before committing to a recommendation. | Pro+ |
|
|
64
65
|
| **`RVRY_challenge`** | Adversarial stress-testing. Finds weaknesses, tests assumptions, and surfaces failure modes in a proposal before you commit. | Pro+ |
|
|
65
66
|
| **`RVRY_meta`** | Sustained metacognitive observation. Examines how your AI is thinking, not just what it's thinking. | Max |
|
|
@@ -78,7 +79,7 @@ All tools accept:
|
|
|
78
79
|
|
|
79
80
|
## Slash Commands (Claude Code)
|
|
80
81
|
|
|
81
|
-
When you run `npx @rvry/mcp@latest setup` and select Claude Code, the wizard installs 4 slash commands:
|
|
82
|
+
When you run `npx --yes --package @rvry/mcp@latest rvry-mcp setup` and select Claude Code, the wizard installs 4 slash commands:
|
|
82
83
|
|
|
83
84
|
| Command | Tool | What it does |
|
|
84
85
|
|---------|------|-------------|
|
|
@@ -89,6 +90,8 @@ When you run `npx @rvry/mcp@latest setup` and select Claude Code, the wizard ins
|
|
|
89
90
|
|
|
90
91
|
Usage: type `/deepthink [your question]` in Claude Code. Each command routes directly to the corresponding RVRY MCP tool.
|
|
91
92
|
|
|
93
|
+
`RVRY_think` is available as a tool, but the setup wizard does not install a `/think` slash command. Use it from clients that show the full MCP tool list or invoke it manually.
|
|
94
|
+
|
|
92
95
|
Commands are installed to `~/.claude/commands/`. Existing files are never overwritten — re-running setup is safe.
|
|
93
96
|
|
|
94
97
|
## How it Works
|
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*
|
|
8
8
|
* Exposes 5 tools (RVRY_deepthink, RVRY_problem_solve, RVRY_think, RVRY_challenge, RVRY_meta) + backward-compat aliases + 5 MCP Prompts.
|
|
9
9
|
*
|
|
10
|
-
* Also supports `npx @rvry/mcp setup` to install Claude Code commands.
|
|
10
|
+
* Also supports `npx --yes --package @rvry/mcp@latest rvry-mcp setup` to install Claude Code commands.
|
|
11
11
|
*/
|
|
12
12
|
import { type Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
13
13
|
import { type RvryTool, type ThinkResponse } from './client.js';
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*
|
|
8
8
|
* Exposes 5 tools (RVRY_deepthink, RVRY_problem_solve, RVRY_think, RVRY_challenge, RVRY_meta) + backward-compat aliases + 5 MCP Prompts.
|
|
9
9
|
*
|
|
10
|
-
* Also supports `npx @rvry/mcp setup` to install Claude Code commands.
|
|
10
|
+
* Also supports `npx --yes --package @rvry/mcp@latest rvry-mcp setup` to install Claude Code commands.
|
|
11
11
|
*/
|
|
12
12
|
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
|
|
13
13
|
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
|
package/dist/setup.d.ts
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
* Interactive setup: device auth flow (browser-based) or manual token paste.
|
|
5
5
|
* Auto-detects Claude Code CLI and Claude Desktop, configures both.
|
|
6
6
|
*
|
|
7
|
-
* Usage: npx @rvry/mcp@latest setup
|
|
8
|
-
* npx @rvry/mcp@latest setup --token <value>
|
|
9
|
-
* npx @rvry/mcp@latest setup --client code (Claude Code only)
|
|
10
|
-
* npx @rvry/mcp@latest setup --client desktop (Claude Desktop only)
|
|
7
|
+
* Usage: npx --yes --package @rvry/mcp@latest rvry-mcp setup
|
|
8
|
+
* npx --yes --package @rvry/mcp@latest rvry-mcp setup --token <value>
|
|
9
|
+
* npx --yes --package @rvry/mcp@latest rvry-mcp setup --client code (Claude Code only)
|
|
10
|
+
* npx --yes --package @rvry/mcp@latest rvry-mcp setup --client desktop (Claude Desktop only)
|
|
11
11
|
*/
|
|
12
12
|
export declare function runSetup(): Promise<void>;
|
package/dist/setup.js
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
* Interactive setup: device auth flow (browser-based) or manual token paste.
|
|
5
5
|
* Auto-detects Claude Code CLI and Claude Desktop, configures both.
|
|
6
6
|
*
|
|
7
|
-
* Usage: npx @rvry/mcp@latest setup
|
|
8
|
-
* npx @rvry/mcp@latest setup --token <value>
|
|
9
|
-
* npx @rvry/mcp@latest setup --client code (Claude Code only)
|
|
10
|
-
* npx @rvry/mcp@latest setup --client desktop (Claude Desktop only)
|
|
7
|
+
* Usage: npx --yes --package @rvry/mcp@latest rvry-mcp setup
|
|
8
|
+
* npx --yes --package @rvry/mcp@latest rvry-mcp setup --token <value>
|
|
9
|
+
* npx --yes --package @rvry/mcp@latest rvry-mcp setup --client code (Claude Code only)
|
|
10
|
+
* npx --yes --package @rvry/mcp@latest rvry-mcp setup --client desktop (Claude Desktop only)
|
|
11
11
|
*/
|
|
12
12
|
import { existsSync, mkdirSync, readFileSync, writeFileSync } from 'fs';
|
|
13
13
|
import { join, dirname } from 'path';
|
|
@@ -25,10 +25,15 @@ const TOKEN_REGEX = /^rvry_[0-9a-f]{32,}$/;
|
|
|
25
25
|
const POLL_INTERVAL_MS = 3000;
|
|
26
26
|
/** Max polling duration: 10 minutes */
|
|
27
27
|
const POLL_TIMEOUT_MS = 10 * 60 * 1000;
|
|
28
|
+
/**
|
|
29
|
+
* `@latest` forces registry resolution even when the client is launched from
|
|
30
|
+
* inside a workspace that also contains a local `@rvry/mcp` package.
|
|
31
|
+
*/
|
|
32
|
+
const RVRY_NPX_ARGS = ['--yes', '--package', '@rvry/mcp@latest', 'rvry-mcp'];
|
|
28
33
|
/** RVRY MCP server config block (reused across Desktop + manual output) */
|
|
29
34
|
const RVRY_SERVER_ENTRY = (token) => ({
|
|
30
35
|
command: 'npx',
|
|
31
|
-
args:
|
|
36
|
+
args: RVRY_NPX_ARGS,
|
|
32
37
|
env: { RVRY_TOKEN: token },
|
|
33
38
|
});
|
|
34
39
|
// ── Utility functions ──────────────────────────────────────────────
|
|
@@ -206,7 +211,7 @@ function registerClaudeCode(token) {
|
|
|
206
211
|
execSync('claude mcp remove rvry', { stdio: 'pipe' });
|
|
207
212
|
}
|
|
208
213
|
catch { /* not registered */ }
|
|
209
|
-
execSync(`claude mcp add -e RVRY_TOKEN="${token}" -s user rvry -- npx @rvry/mcp`, { stdio: 'inherit' });
|
|
214
|
+
execSync(`claude mcp add -e RVRY_TOKEN="${token}" -s user rvry -- npx --yes --package @rvry/mcp@latest rvry-mcp`, { stdio: 'inherit' });
|
|
210
215
|
return 'ok';
|
|
211
216
|
}
|
|
212
217
|
catch {
|
|
@@ -262,7 +267,7 @@ function configureTomlMcp(configPath, token) {
|
|
|
262
267
|
const block = [
|
|
263
268
|
'[mcp_servers.rvry]',
|
|
264
269
|
'command = "npx"',
|
|
265
|
-
'args = ["@rvry/mcp"]',
|
|
270
|
+
'args = ["--yes", "--package", "@rvry/mcp@latest", "rvry-mcp"]',
|
|
266
271
|
'',
|
|
267
272
|
'[mcp_servers.rvry.env]',
|
|
268
273
|
`RVRY_TOKEN = "${token}"`,
|
|
@@ -319,7 +324,7 @@ function registerGeminiCLI(token) {
|
|
|
319
324
|
execSync('gemini mcp remove rvry', { stdio: 'pipe' });
|
|
320
325
|
}
|
|
321
326
|
catch { /* not registered */ }
|
|
322
|
-
execSync(`gemini mcp add rvry -e RVRY_TOKEN="${token}" --scope user npx
|
|
327
|
+
execSync(`gemini mcp add rvry -e RVRY_TOKEN="${token}" --scope user npx --yes --package @rvry/mcp@latest rvry-mcp`, { stdio: 'inherit' });
|
|
323
328
|
return 'ok';
|
|
324
329
|
}
|
|
325
330
|
catch {
|
|
@@ -922,7 +927,7 @@ export async function runSetup() {
|
|
|
922
927
|
console.log(' Manual configuration:');
|
|
923
928
|
console.log('');
|
|
924
929
|
console.log(' Option A — Claude Code (if you install it later):');
|
|
925
|
-
console.log(` claude mcp add -e RVRY_TOKEN="${token}" -s user rvry -- npx @rvry/mcp`);
|
|
930
|
+
console.log(` claude mcp add -e RVRY_TOKEN="${token}" -s user rvry -- npx --yes --package @rvry/mcp@latest rvry-mcp`);
|
|
926
931
|
console.log('');
|
|
927
932
|
console.log(' Option B — JSON config (Claude Desktop, Anti-Gravity, etc.):');
|
|
928
933
|
const manualConfig = { mcpServers: { RVRY: RVRY_SERVER_ENTRY(token) } };
|
|
@@ -935,7 +940,7 @@ export async function runSetup() {
|
|
|
935
940
|
console.log('');
|
|
936
941
|
console.log(' [mcp_servers.rvry]');
|
|
937
942
|
console.log(' command = "npx"');
|
|
938
|
-
console.log(' args = ["@rvry/mcp"]');
|
|
943
|
+
console.log(' args = ["--yes", "--package", "@rvry/mcp@latest", "rvry-mcp"]');
|
|
939
944
|
console.log('');
|
|
940
945
|
console.log(' [mcp_servers.rvry.env]');
|
|
941
946
|
console.log(` RVRY_TOKEN = "${token}"`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rvry/mcp",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.3",
|
|
4
4
|
"description": "RVRY reasoning depth enforcement (RDE) engine client.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"node": ">=18.0.0"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
|
-
"build": "tsc",
|
|
19
|
-
"
|
|
18
|
+
"build": "tsc && chmod 755 dist/index.js",
|
|
19
|
+
"prepack": "npm run build",
|
|
20
20
|
"typecheck": "tsc --noEmit"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|