@vybit/mcp-server 1.5.3 → 1.5.4

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.
Files changed (2) hide show
  1. package/README.md +21 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -30,7 +30,27 @@ This MCP server provides AI assistants with **full parity** with the Vybit Devel
30
30
  - **API Key**: Navigate to the Developer API section, click "</> DEV" then "API Configuration"
31
31
  - **OAuth2 Token**: Complete the OAuth2 flow to obtain an access token
32
32
 
33
- ## Installation
33
+ ## Hosted Remote MCP Server (Easiest)
34
+
35
+ Vybit provides a hosted remote MCP server at `https://api.vybit.net/v1/mcp` — no installation or API key management required. Connect directly from Claude or ChatGPT (may require paid plans):
36
+
37
+ **Claude Desktop / Claude Web (claude.ai)**:
38
+ 1. Open **Settings → Connectors**
39
+ 2. Click **Add Custom Connector**
40
+ 3. Enter the MCP URL: `https://api.vybit.net/v1/mcp`
41
+ 4. You'll be redirected to authorize with your Vybit account via OAuth
42
+
43
+ **ChatGPT Desktop / ChatGPT Web (chatgpt.com)**:
44
+ 1. Open **Settings → Apps → Advanced Settings**
45
+ 2. Toggle **ON** Developer Mode, Click "Create app"
46
+ 3. Fill out and submit the New App form setting the MCP Server URL as `https://api.vybit.net/v1/mcp`
47
+ 4. You'll be redirected to authorize with your Vybit account via OAuth
48
+
49
+ Once connected, all 30 MCP tools are available immediately through natural conversation.
50
+
51
+ ## Local Installation
52
+
53
+ If you prefer to run the server locally (e.g., for Claude Code, Cline, or other MCP clients that support stdio transport), you can install the npm package and configure with your API key.
34
54
 
35
55
  ### Claude Desktop (MCPB — Recommended)
36
56
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vybit/mcp-server",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "description": "Model Context Protocol (MCP) server for Vybit Developer API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",