@crush-protocol/mcp-client 0.4.1 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +11 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -3,23 +3,31 @@
3
3
  [![npm version](https://img.shields.io/npm/v/@crush-protocol/mcp-client)](https://www.npmjs.com/package/@crush-protocol/mcp-client)
4
4
  [![MIT licensed](https://img.shields.io/npm/l/@crush-protocol/mcp-client)](./LICENSE)
5
5
 
6
- `@crush-protocol/mcp-client` is the npm entrypoint for Crush Protocol MCP.
6
+ > Connect Cursor, Claude Code, Codex, Gemini CLI, and other MCP hosts to Crush's hosted trading tools through one npm package.
7
7
 
8
8
  Crush Protocol is an AI-native quantitative trading product. It lets an MCP host connect to Crush and use trading-focused tools for strategy research, backtest creation, live strategy management, and market data discovery.
9
9
 
10
10
  ## Quick Setup
11
11
 
12
+ Recommended flow:
13
+
14
+ 1. Write MCP config for your host.
15
+ 2. Complete OAuth login once in the browser.
16
+ 3. Reuse the same cached token across all supported MCP hosts.
17
+
12
18
  ```sh
13
19
  npx -y @crush-protocol/mcp-client setup --all
20
+ npx -y @crush-protocol/mcp-client login
21
+ npx -y @crush-protocol/mcp-client ping
14
22
  ```
15
23
 
16
24
  This writes MCP config for all **9** supported hosts: Cursor, Claude Code, Codex, Gemini CLI, OpenCode, VS Code, Windsurf, Claude Desktop, Warp.
17
25
 
18
26
  To target a single host: `npx -y @crush-protocol/mcp-client setup --cursor`
19
27
 
20
- The default hosted MCP endpoint is `https://crush-mcp-ats.dev.xexlab.com/mcp`.
28
+ The default hosted MCP endpoint is `https://crush-mcp-ats.dev.xexlab.com/mcp`. Users do not need to add it manually to host configs.
21
29
 
22
- **[All Client Configurations →](#client-configuration)**
30
+ Prefer manual setup or a client-specific deeplink? Jump to **[Client Configuration](#client-configuration)**.
23
31
 
24
32
  ## How It Works
25
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crush-protocol/mcp-client",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Crush MCP npm client package (remote Streamable HTTP + optional ClickHouse direct)",
5
5
  "type": "module",
6
6
  "license": "MIT",