@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.
- package/README.md +11 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,23 +3,31 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@crush-protocol/mcp-client)
|
|
4
4
|
[](./LICENSE)
|
|
5
5
|
|
|
6
|
-
|
|
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
|
-
**[
|
|
30
|
+
Prefer manual setup or a client-specific deeplink? Jump to **[Client Configuration](#client-configuration)**.
|
|
23
31
|
|
|
24
32
|
## How It Works
|
|
25
33
|
|