@rvry/mcp 0.8.0 → 0.8.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 +14 -8
- package/dist/setup.js +8 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,17 +37,23 @@ For any MCP client that supports **stdio transport** (runs a local process), add
|
|
|
37
37
|
|
|
38
38
|
Get your token at [rvry.ai/dashboard](https://rvry.ai/dashboard) after signing up.
|
|
39
39
|
|
|
40
|
-
###
|
|
40
|
+
### HTTP Transport (Web-Based Clients)
|
|
41
|
+
|
|
42
|
+
For clients that connect via HTTP URL (ChatGPT, Perplexity, etc.):
|
|
43
|
+
|
|
44
|
+
**MCP Server URL:** `https://engine.rvry.ai/mcp`
|
|
41
45
|
|
|
42
|
-
|
|
46
|
+
Authentication uses Supabase OAuth 2.1. Configure your client's OAuth settings to use your Supabase project credentials, or pass a Bearer token directly.
|
|
47
|
+
|
|
48
|
+
### Compatibility
|
|
43
49
|
|
|
44
|
-
|
|
45
|
-
|-------|--------|
|
|
46
|
-
| Yes | Claude Code, Claude Desktop, Cursor, Gemini CLI, Codex, Anti-Gravity |
|
|
47
|
-
| Yes | Any client that supports `command` + `args` MCP config |
|
|
48
|
-
| No | Web-based clients that require an HTTP/SSE MCP server URL (e.g. Perplexity) |
|
|
50
|
+
RVRY supports both **stdio** and **HTTP** transports:
|
|
49
51
|
|
|
50
|
-
|
|
52
|
+
| Transport | Client | Setup |
|
|
53
|
+
|-----------|--------|-------|
|
|
54
|
+
| stdio | Claude Code, Claude Desktop, Cursor, Gemini CLI, Codex, Anti-Gravity | `npx @rvry/mcp setup` |
|
|
55
|
+
| stdio | Any client with `command` + `args` config | Manual JSON config (see above) |
|
|
56
|
+
| HTTP | ChatGPT (custom GPTs), Perplexity, any HTTP MCP client | URL: `https://engine.rvry.ai/mcp` |
|
|
51
57
|
|
|
52
58
|
## Tools
|
|
53
59
|
|
package/dist/setup.js
CHANGED
|
@@ -903,9 +903,14 @@ export async function runSetup() {
|
|
|
903
903
|
console.log(` ${step}. Restart desktop apps for the new MCP server to load`);
|
|
904
904
|
step++;
|
|
905
905
|
}
|
|
906
|
-
//
|
|
907
|
-
console.log(` ${step}.
|
|
908
|
-
console.log('
|
|
906
|
+
// HTTP transport for web-based clients
|
|
907
|
+
console.log(` ${step}. For web-based MCP clients (ChatGPT, Perplexity, etc.):`);
|
|
908
|
+
console.log(' MCP Server URL: https://engine.rvry.ai/mcp');
|
|
909
|
+
console.log(' Auth: Supabase OAuth 2.1 (Bearer token)');
|
|
910
|
+
console.log('');
|
|
911
|
+
step++;
|
|
912
|
+
// Generic stdio MCP config for any other client
|
|
913
|
+
console.log(` ${step}. For other local MCP clients — add to your MCP config:`);
|
|
909
914
|
console.log('');
|
|
910
915
|
const mcpBlock = { rvry: RVRY_SERVER_ENTRY('YOUR_RVRY_TOKEN') };
|
|
911
916
|
const lines = JSON.stringify(mcpBlock, null, 2).split('\n');
|