@rvry/mcp 0.10.1 → 0.10.2
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 +3 -3
- package/dist/setup.d.ts +4 -4
- package/dist/setup.js +4 -4
- package/package.json +1 -1
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 setup
|
|
10
|
+
npx @rvry/mcp@latest setup
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
The wizard will:
|
|
@@ -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 setup` |
|
|
54
|
+
| stdio | Claude Code, Claude Desktop, Cursor, Gemini CLI, Codex, Anti-Gravity | `npx @rvry/mcp@latest 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
|
|
|
@@ -66,7 +66,7 @@ RVRY supports both **stdio** and **HTTP** transports:
|
|
|
66
66
|
|
|
67
67
|
## Slash Commands (Claude Code)
|
|
68
68
|
|
|
69
|
-
When you run `npx @rvry/mcp setup` and select Claude Code, the wizard installs 4 slash commands:
|
|
69
|
+
When you run `npx @rvry/mcp@latest setup` and select Claude Code, the wizard installs 4 slash commands:
|
|
70
70
|
|
|
71
71
|
| Command | Tool | What it does |
|
|
72
72
|
|---------|------|-------------|
|
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 setup
|
|
8
|
-
* npx @rvry/mcp setup --token <value>
|
|
9
|
-
* npx @rvry/mcp setup --client code (Claude Code only)
|
|
10
|
-
* npx @rvry/mcp setup --client desktop (Claude Desktop only)
|
|
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)
|
|
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 setup
|
|
8
|
-
* npx @rvry/mcp setup --token <value>
|
|
9
|
-
* npx @rvry/mcp setup --client code (Claude Code only)
|
|
10
|
-
* npx @rvry/mcp setup --client desktop (Claude Desktop only)
|
|
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)
|
|
11
11
|
*/
|
|
12
12
|
import { existsSync, mkdirSync, readFileSync, writeFileSync } from 'fs';
|
|
13
13
|
import { join, dirname } from 'path';
|