
Connects Claude to your local Interactive Brokers TWS or IB Gateway session for read-only portfolio analysis and trading research. Exposes account balances, positions with Greeks, multi-asset quotes, option chains, market scanners, S&P 500 breadth, dealer gamma estimates, VIX regime checks, and position-sizing math. Ships as a single Go binary with both CLI and MCP server. Deliberately excludes order placement: you can ask it to review your AAPL exposure including delta, size a stop-loss entry against your account equity, or assess whether current VIX term structure and margin cushion suggest you should de-lever, but it won't touch the order router. Designed for semi-professional retail traders running IBKR Pro accounts who want agent-driven portfolio diagnostics on live broker data without leaving the local machine.
A local risk desk for your Interactive Brokers account.
Canary turns one local IB Gateway or TWS session into a daily brief, current portfolio and market evidence, and a broker-confirmed review of what past position changes delivered. Use the same daemon from an MCP host, the shell, or a paired phone. The standard binary and every MCP tool are structurally read-only: they contain no broker-order preview or execution surface.
Canary is for an IBKR Pro user who runs Gateway or TWS locally and wants stale,
missing, or held evidence to remain visible. It is not a hosted brokerage
service, a trade recommender, or a complete TWS API replacement. If you only
need a Go wire-protocol client, use pkg/ibkr.
Documentation · Install · First session · Canary Edge · MCP tools · Safety · Privacy
You need IB Gateway 10.37+ or TWS with API socket access enabled, an IBKR Pro account, and macOS or Linux on arm64 or amd64. WSL works; native Windows does not.
For one binary shared by the shell and local MCP hosts:
curl -fsSL https://raw.githubusercontent.com/osauer/canary/main/install.sh | sh
canary status # prove which gateway and account Canary reached
canary brief # review what changed and what needs attention
The installer verifies the signed release checksum and installs to
~/.local/bin. The install guide shows how to
inspect the script first and covers every other installation path.
For Claude Desktop only, download
canary.mcpb,
open it with Claude Desktop, then quit Claude completely and relaunch it. Ask:
What needs attention today, and which inputs are degraded?
The bundle carries its own macOS and Linux binaries. The Claude Desktop walkthrough covers the first connection.

Current Canary SPA rendered from synthetic data. Edge reports observed historical outcomes; it is not a forecast or a causal claim.
| You want to… | Start with | Boundary |
|---|---|---|
| Ask an agent about the account | The MCP Bundle, or canary mcp from any local framework that can launch a stdio MCP server | Read-only tools; no settings writes, previews, or execution tools |
| Work in a terminal or script | canary brief, canary positions --by underlying, and --json | Deterministic CLI output over the same daemon authority |
| Check the desk from a phone | canary app, then canary app pair | Paired PWA; local by default, optional remote relay |
| Build directly on the TWS protocol | github.com/osauer/canary/v2/pkg/ibkr | Lower-level transport; your application owns policy, authorization, and journaling |
Constrained broker actions are not a fifth onboarding path. They require a separate experimental trading binary and remain limited to gated CLI and paired-app flows. MCP stays read-only in every build. Read Gated orders and the trading build before using that artifact.
canary brief, the Rulebook, and the Action
Queue combine current alerts, process exceptions, protection candidates,
and exercise candidates without turning any row into submit authority.Reconciliation, statement-derived equity, and Edge require one shared IBKR
Activity Flex Query. Run canary setup reporting, then follow the
screenshot-driven field checklist.
The MCP Bundle is the shortest Claude Desktop path. For another local host,
install the shared binary and point the host at its absolute path. Hosts that
use the common mcpServers shape accept:
{
"mcpServers": {
"canary": {
"command": "/ABSOLUTE/PATH/TO/canary",
"args": ["mcp"]
}
}
}
Use which canary to find the path. A browser-only agent cannot reach this
local stdio process. After upgrading, fully relaunch the host so it respawns
the MCP server.
Ask in desk language rather than naming tools:
How is my portfolio exposed by underlying?
Which repeated entries, adds, trims, or exits had the largest observed 20-session price impact, and what coverage bounds that answer?
Are any protection or exercise candidates ready for human review?
The host guide covers Claude Code, Cursor, Continue, Zed, framework integration, logs, and connection checks. The generated MCP reference is the exact tool and schema inventory. The optional Claude Code plugin adds Canary's skill, MCP config, and safety hooks; it does not ship the binary.
Every data command supports --json:
canary account
canary positions --by underlying
canary brief
canary edge
canary rules
canary technical SPY,QQQ
canary proposals list
canary opportunities list
canary orders open
Run canary status first when anything looks wrong. canary --help and the
CLI reference carry the complete command and flag
inventory.
For the paired app, run canary app on the machine that owns the Gateway or
TWS session, then run canary app pair and scan the QR code. The current
workspace is Monitor, Positions, Edge, Alerts, and Orders; Settings opens from
the header gear. See the app guide for local pairing,
remote-relay, and Web Push boundaries.
pkg/ibkr is a clean-room Go client for the TWS wire protocol:
import (
"context"
"time"
"github.com/osauer/canary/v2/pkg/ibkr"
)
func accountSummary(ctx context.Context, clientID int) (*ibkr.RawAccountSummary, error) {
cfg := ibkr.DefaultConfig()
cfg.Port = 4002 // Gateway paper
connector := ibkr.NewConnector(&ibkr.ConnectorConfig{
// Use an ID not already owned by Canary or another TWS client.
PreferredClientID: clientID,
BaseConfig: cfg,
})
if err := connector.Start(ctx); err != nil {
return nil, err
}
defer connector.Stop()
return connector.RequestAccountSummary(ctx, 5*time.Second)
}
Protocol coverage is purpose-driven, not exhaustive. The package transports broker requests but does not provide Canary's application-level authority boundary. Direct users must supply their own policy, authorization, journaling, and reconciliation controls. Start with the package documentation.
The public Go module deliberately remains on the maintained /v2 line while
product v3 ships as signed binaries. Therefore go install github.com/osauer/canary/v2/cmd/canary@latest installs the v2 CLI, not product
v3.
shell, MCP host, or paired app
↓ local Unix socket
canary daemon
↓ local TCP by default
IB Gateway or TWS
The daemon starts on demand, owns the selected account, broker connection,
market evidence, policy state, and local order journal, and normally exits
after 15 idle minutes. Adapters render typed daemon results; they do not
re-create risk policy. The architecture
and storage guide describe the boundaries and
the retained ibkr XDG paths used for upgrade continuity.
Canary has no telemetry and does not send account IDs, balances, quantities, or P/L to the maintainer. Configured public-data refreshes, an MCP host, remote relay, or push service receive only the data disclosed in the path you enable. PRIVACY.md is the authoritative data map; SECURITY.md covers the threat model and signed release artifacts.
Canary is an independent third-party client for Interactive Brokers' publicly
documented TWS API. It is not built, endorsed, sponsored, or supported by
Interactive Brokers Group, Inc. or its affiliates. pkg/ibkr redistributes no
Interactive Brokers code, libraries, jars, or market data. Nothing here is
investment advice.
MIT. See LICENSE.