Metadata-Version: 2.4
Name: tigermcp
Version: 0.1.1
Summary: Tiger Broker API MCP Server
Home-page: https://github.com/tigerfintech/openapi-python-sdk
Author: TigerBrokers
Author-email: openapi@itiger.com
License: Apache License v2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: tigeropen>=3.4.5
Requires-Dist: mcp[cli]>=1.13.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Tiger MCP Server

Tiger MCP Server 

## Quickstart

### Install 
```shell
mkdir demo
cd demo

# Create virtual environment and activate it
python -m venv .venv
source .venv/bin/activate
# or windows
# .venv\Scripts\activate

pip install tigermcp
```

### Configure TigerOpen API credentials environment variables

Method 1: Specify the configuration file
```bash
export TIGEROPEN_PROPS_PATH="path/to/your/tiger_openapi_config.properties"
```

Method 2: Specify tiger_id/private_key/account directly
```bash
export TIGEROPEN_TIGER_ID="your Tiger ID"
export TIGEROPEN_PRIVATE_KEY="your private key"
export TIGEROPEN_ACCOUNT="your trading account"
```

Set `TIGERMCP_READONLY` to true if you want to run the server in read-only mode (no trading actions allowed).



### Run
```shell
tigermcp 
```

### Run with Cursor/Claude/Trae


```json
{
  "mcpServers": {
    "tigermcp": {
      "command": "/path/to/tigermcp",
      "env": {
        "TIGEROPEN_PROPS_PATH": "/path/to/your/tiger_openapi_config.properties"
      }
    }
  }
}
```


