You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(mcp): add Codex client setup and remove ChatGPT (#408)
## Summary
- Add Codex client setup instructions with detailed GUI steps (Settings
→ MCP Servers → Add Server, Streamable HTTP, then Authenticate)
- Remove ChatGPT from the client list (MCP installation not supported)
- Changes applied across all three language versions (en, zh-CN, zh-HK)
## Test plan
- [ ] Verify Codex setup steps are accurate and complete
- [ ] Confirm ChatGPT entry is removed from all three language files
🤖 Generated with [Claude Code](https://claude.com/claude-code)
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/en/docs/cli.md
+13-6Lines changed: 13 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@ sidebar_icon: terminal
7
7
id: cli
8
8
---
9
9
10
-
# Longbridge Terminal CLI
10
+
# Longbridge CLI
11
11
12
-
Longbridge Terminal is an AI-native CLI covering every Longbridge OpenAPI endpoint — real-time market data, account management, and trading. Designed for scripting, AI-agent tool-calling, and daily trading workflows from the terminal.
12
+
Longbridge CLI is an AI-native CLI tool covering every Longbridge OpenAPI endpoint — real-time market data, account management, and trading. Designed for scripting, AI-agent tool-calling, and daily trading workflows from the terminal.
If you don't need to write code, the [Longbridge CLI](/docs/cli) offers a lightweight alternative — install once, authorize via OAuth, no environment variables needed.
Copy file name to clipboardExpand all lines: docs/en/docs/llm.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
-
sidebar_position: 2.2
2
+
sidebar_position: 2.3
3
3
slug: /llm
4
-
sidebar_label: LLM
4
+
sidebar_label: LLMs
5
5
sidebarCollapsed: true
6
6
sidebar_icon: sparkles
7
7
id: llm
8
8
---
9
9
10
-
# LLM Components
10
+
# LLMs Components
11
11
12
12
We provide several components for LLMs (Large Language Models) that allow you to easily access and analyze financial data, real-time market data, and even enable AI to place orders.
Copy file name to clipboardExpand all lines: docs/en/docs/mcp.md
+37-13Lines changed: 37 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
sidebar_position: 2
2
+
sidebar_position: 2.2
3
3
slug: /mcp
4
4
sidebar_label: MCP
5
5
sidebarCollapsed: true
@@ -9,13 +9,16 @@ sidebar_icon: cpu
9
9
10
10
# Longbridge MCP Service
11
11
12
-
Longbridge provides a hosted MCP (Model Context Protocol) service that lets you use Longbridge market data and account capabilities directly from AI coding assistants and chat tools — without managing API keys manually.
12
+
Longbridge provides a hosted HTTP MCP (Model Context Protocol) service that lets you use Longbridge market data and account capabilities directly from AI coding assistants and chat tools — without managing API keys manually.
- An active Longbridge account with onboarding completed
21
+
- An active Longbridge account with onboarding completed, or a paper trading account
19
22
- An AI client that supports MCP OAuth 2.1 (see compatibility note below)
20
23
21
24
## Available capabilities
@@ -34,7 +37,34 @@ Actual tool availability varies by region, account level, and granted scopes.
34
37
35
38
> Configuration format may vary across client versions. Treat your client's official MCP documentation as the source of truth. The core parameter you need is the server URL below.
36
39
37
-
In any MCP-capable client, add Longbridge as a remote MCP server:
40
+
### Claude Code
41
+
42
+
Run the following command in your terminal:
43
+
44
+
```bash
45
+
claude mcp add --transport http longbridge https://openapi.longbridge.com/mcp
46
+
```
47
+
48
+
Then open the `claude` terminal interface, type `/mcp`, select `longbridge`, and choose **Authenticate** to complete the OAuth authorization flow.
0 commit comments