@rvry/mcp 0.10.1 → 0.10.5

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 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
 
@@ -64,9 +64,21 @@ RVRY supports both **stdio** and **HTTP** transports:
64
64
  | **`RVRY_challenge`** | Adversarial stress-testing. Finds weaknesses, tests assumptions, and surfaces failure modes in a proposal before you commit. | Pro+ |
65
65
  | **`RVRY_meta`** | Sustained metacognitive observation. Examines how your AI is thinking, not just what it's thinking. | Max |
66
66
 
67
+ ### Parameters
68
+
69
+ All tools accept:
70
+
71
+ | Parameter | Type | Required | Description |
72
+ |-----------|------|----------|-------------|
73
+ | `input` | string | Yes | Your question (new session) or analysis (continuation) |
74
+ | `sessionId` | string | No | Session ID for continuing an existing session |
75
+ | `requiresCurrentData` | boolean | No | Set to `true` when the question involves facts, policies, prices, or events that may have changed. Seeds a verification constraint that persists across all rounds. |
76
+
77
+ **When to use `requiresCurrentData`:** Any question about regulations, pricing, legal rulings, market conditions, API specifications, or current events. The engine will require the model to explicitly classify every cited fact as either verified-current or training-data-dependent before concluding.
78
+
67
79
  ## Slash Commands (Claude Code)
68
80
 
69
- When you run `npx @rvry/mcp setup` and select Claude Code, the wizard installs 4 slash commands:
81
+ When you run `npx @rvry/mcp@latest setup` and select Claude Code, the wizard installs 4 slash commands:
70
82
 
71
83
  | Command | Tool | What it does |
72
84
  |---------|------|-------------|
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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rvry/mcp",
3
- "version": "0.10.1",
3
+ "version": "0.10.5",
4
4
  "description": "RVRY reasoning depth enforcement (RDE) engine client.",
5
5
  "type": "module",
6
6
  "bin": {