长桥股票市场
STDIO提供实时股市数据和交易功能的服务器
提供实时股市数据和交易功能的服务器
A MCP server implementation for LongPort OpenAPI, provides real-time stock market data, provides AI access analysis and trading capabilities through MCP.
Run script to install:
curl -sSL https://raw.githubusercontent.com/longportapp/openapi/refs/heads/main/mcp/install | bash
Download the latest binary from the Releases page.
Once you done server setup, and connected, you can talk with AI:
To configure LongPort MCP in Cursor:
+ Add New MCP Server
longport-mcp
(or your preferred name)command
env LONGPORT_APP_KEY=your-app-key LONGPORT_APP_SECRET=your-app-secret LONGPORT_ACCESS_TOKEN=your-access-token longport-mcp
If you are using Windows, replace command with cmd /c "set LONGPORT_APP_KEY=your-app-key && set LONGPORT_APP_SECRET=your-app-secret && set LONGPORT_ACCESS_TOKEN=your-access-token && longport-mcp"
Or use this config:
{ "mcpServers": { "longport-mcp": { "command": "/usr/local/bin/longport-mcp", "env": { "LONGPORT_APP_KEY": "your-app-key", "LONGPORT_APP_SECRET": "your-app-secret", "LONGPORT_ACCESS_TOKEN": "your-access-token" } } } }
To configure LongPort MCP in Cherry Studio:
+ Add Server
longport-mcp
(or your preferred name)STDIO
env LONGPORT_APP_KEY=your-app-key LONGPORT_APP_SECRET=your-app-secret LONGPORT_ACCESS_TOKEN=your-access-token longport-mcp
If you are using Windows, replace command with cmd /c "set LONGPORT_APP_KEY=your-app-key && set LONGPORT_APP_SECRET=your-app-secret && set LONGPORT_ACCESS_TOKEN=your-access-token && longport-mcp"
env LONGPORT_APP_KEY=your-app-key LONGPORT_APP_SECRET=your-app-secret LONGPORT_ACCESS_TOKEN=your-access-token longport-mcp --sse
Default bind address is 127.0.0.1:8000
, you can change it by using the --bind
flag:
longport-mcp --sse --bind 127.0.0.1:3000
To run the server in read-only mode, set the flag --readonly
:
longport-mcp --readonly
This will prevent the server from submitting orders to the exchange.
To enable logging, set the flag --log-dir
to the directory where you want to store the logs:
longport-mcp --log-dir /path/to/log/dir