forked from rcontesti/IB_MCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (36 loc) · 1.51 KB
/
.env.example
File metadata and controls
40 lines (36 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copy this file to .env and fill in the values
GATEWAY_PORT=5055
GATEWAY_ENDPOINT=/v1/api
GATEWAY_TEST_ENDPOINT=/v1/api/iserver/account/orders
GATEWAY_INTERNAL_BASE_URL=https://host.docker.internal
# TICKER (Keeps the session alive)
TICKLE_INTERVAL=60
TICKLE_BASE_URL=https://host.docker.internal:5055/v1/api
TICKLE_ENDPOINT=/tickle
# MCP SERVER
MCP_SERVER_HOST=0.0.0.0
# MCP_SERVER_HOST=localhost
MCP_SERVER_BASE_URL=https://localhost
MCP_SERVER_INTERNAL_BASE_URL=https://host.docker.internal
MCP_SERVER_PORT=5002
MCP_SERVER_PATH=/mcp
# 'critical', 'error', 'warning', 'info', 'debug', 'trace'
MCP_SERVER_LOG_LEVEL=info
# sse or streamable-http
MCP_TRANSPORT_PROTOCOL=streamable-http
MCP_DEV_MODE=true
# SECURITY
# API key for MCP server authentication (leave empty to disable auth in development)
MCP_API_KEY=
# SSL verification: path to CA cert file, 'true' for system CAs, 'false' to disable (insecure)
SSL_VERIFY=false
# SSL password for the gateway keystore
SSL_PASSWORD=mywebapi
# Path to CA certificate for gateway SSL verification (leave empty to use -k/insecure in dev)
GATEWAY_CA_CERT=
# ROUTERS_GENERATOR
OPEN_API_SPEC_URL=https://api.ibkr.com/gw/api/v3/api-docs
OPENAPI_FILE_PATH=openapi.json
INCLUDED_TAGS="Alerts,Contract,Events Contracts,FA Allocation Management,FYIs & Notifications,Market Data,Options Chains,Order Monitoring,Orders,Portfolio,Portfolio Analyst,Scanner,Session,Watchlists,Authorization Token,Account Management Reports"
# Overides INCLUDED TAGS
EXCLUDED_TAGS="Options Chains, Orders, FA Allocation Management"