@rvry/mcp 0.4.3 → 0.5.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/README.md +34 -22
- package/dist/setup.js +0 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @rvry/mcp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Reasoning Depth Enforcement for LLMs.**
|
|
4
4
|
|
|
5
|
-
RVRY is
|
|
5
|
+
RVRY is an MCP server that improves AI reliability by forcing your model to finish thinking before it answers. When your AI raises a question, RVRY remembers it. When it makes an assumption, RVRY flags it. When it tries to wrap up while those are still unaddressed, RVRY doesn't let it.
|
|
6
6
|
|
|
7
7
|
## Quick Start
|
|
8
8
|
|
|
@@ -12,24 +12,24 @@ npx @rvry/mcp setup
|
|
|
12
12
|
|
|
13
13
|
The wizard will:
|
|
14
14
|
1. Open your browser to sign in (or prompt for a token)
|
|
15
|
-
2. Auto-detect
|
|
16
|
-
3. Configure
|
|
17
|
-
4. Install slash commands (`/deepthink`, `/problem-solve`)
|
|
15
|
+
2. Auto-detect supported clients on your machine
|
|
16
|
+
3. Configure them automatically
|
|
18
17
|
|
|
19
|
-
|
|
18
|
+
Supported clients: **Claude Code**, **Claude Desktop**, **Cursor**, **Gemini CLI**, **Codex**, **Anti-Gravity**
|
|
19
|
+
|
|
20
|
+
Restart any running clients after setup, and RVRY is ready.
|
|
20
21
|
|
|
21
22
|
### Options
|
|
22
23
|
|
|
23
24
|
```bash
|
|
24
|
-
npx @rvry/mcp setup --token rvry_abc123
|
|
25
|
-
npx @rvry/mcp setup --client code
|
|
26
|
-
npx @rvry/mcp setup --client desktop
|
|
25
|
+
npx @rvry/mcp setup --token rvry_abc123 # Skip browser auth, use token directly
|
|
26
|
+
npx @rvry/mcp setup --client code # Only configure Claude Code
|
|
27
|
+
npx @rvry/mcp setup --client desktop # Only configure Claude Desktop
|
|
28
|
+
npx @rvry/mcp setup --accept-terms # Accept ToS non-interactively
|
|
27
29
|
```
|
|
28
30
|
|
|
29
31
|
### Manual Installation
|
|
30
32
|
|
|
31
|
-
If you prefer to configure manually:
|
|
32
|
-
|
|
33
33
|
**Claude Code:**
|
|
34
34
|
```bash
|
|
35
35
|
claude mcp add -e RVRY_TOKEN=rvry_your_token -s user rvry -- npx @rvry/mcp
|
|
@@ -55,19 +55,31 @@ Config file locations:
|
|
|
55
55
|
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
56
56
|
- Linux: `~/.config/Claude/claude_desktop_config.json`
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
**Other MCP clients:**
|
|
59
|
+
|
|
60
|
+
Any client that supports MCP can use RVRY. Point it at `npx @rvry/mcp` with the environment variable `RVRY_TOKEN` set to your token.
|
|
59
61
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
* **`
|
|
63
|
-
* **`
|
|
64
|
-
* **`RVRY_meta`**: Reflective examination of defaults, shifts, and reasoning posture.
|
|
62
|
+
## Tools
|
|
63
|
+
|
|
64
|
+
* **`RVRY_deepthink`** — Extended analysis that catches assumptions, tests them, and doesn't let your AI wrap up until it's dealt with what it found.
|
|
65
|
+
* **`RVRY_problem_solve`** — Structured decision-making that forces your AI through orientation, anticipation, and evaluation before it commits to a recommendation.
|
|
65
66
|
|
|
66
67
|
## How it Works
|
|
67
68
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
69
|
+
Same model. Same question. Different answer.
|
|
70
|
+
|
|
71
|
+
Your AI already has the reasoning capacity. RVRY forces it to use that capacity by holding it accountable — when it raises a question, that question has to get answered. When it makes an assumption, that assumption has to get tested. It keeps working not because it was told to think harder, but because it hasn't finished what it started.
|
|
72
|
+
|
|
73
|
+
On hard questions, a smaller model with RVRY outperforms a bigger model without it. The bottleneck was never how smart the AI is. It was whether the AI finished thinking.
|
|
74
|
+
|
|
75
|
+
[Learn more →](https://rvry.ai/how-it-works)
|
|
76
|
+
|
|
77
|
+
## Pricing
|
|
78
|
+
|
|
79
|
+
| Plan | Runs | Price |
|
|
80
|
+
|------|------|-------|
|
|
81
|
+
| Free | 5/month | $0 |
|
|
82
|
+
| Pro | 25/month | $20/mo |
|
|
83
|
+
| Max | Unlimited | $100/mo |
|
|
72
84
|
|
|
73
|
-
|
|
85
|
+
Sign up at [rvry.ai](https://rvry.ai).
|
package/dist/setup.js
CHANGED
|
@@ -456,26 +456,6 @@ const CLIENT_REGISTRY = [
|
|
|
456
456
|
configure: registerGeminiCLI,
|
|
457
457
|
notInstalledHint: 'Not installed (https://github.com/google-gemini/gemini-cli)',
|
|
458
458
|
},
|
|
459
|
-
{
|
|
460
|
-
name: 'Windsurf',
|
|
461
|
-
id: 'windsurf',
|
|
462
|
-
defaultSelected: false,
|
|
463
|
-
detect: () => {
|
|
464
|
-
if (platform() === 'darwin' && existsSync('/Applications/Windsurf.app'))
|
|
465
|
-
return true;
|
|
466
|
-
if (existsSync(join(homedir(), '.codeium', 'windsurf', 'mcp_config.json')))
|
|
467
|
-
return true;
|
|
468
|
-
try {
|
|
469
|
-
const cmd = platform() === 'win32' ? 'where windsurf' : 'which windsurf';
|
|
470
|
-
execSync(cmd, { stdio: 'pipe' });
|
|
471
|
-
return true;
|
|
472
|
-
}
|
|
473
|
-
catch { /* not on PATH */ }
|
|
474
|
-
return false;
|
|
475
|
-
},
|
|
476
|
-
configure: (token) => configureJsonMcp(join(homedir(), '.codeium', 'windsurf', 'mcp_config.json'), token),
|
|
477
|
-
notInstalledHint: 'Not installed (https://windsurf.com)',
|
|
478
|
-
},
|
|
479
459
|
{
|
|
480
460
|
name: 'Codex',
|
|
481
461
|
id: 'codex',
|