Canary
MCP serverDev toolsCanary gives your AI read-only access to your Interactive Brokers (IBKR) account. Once added, your AI can look up account details, positions, risk, and a daily brief whenever you ask. It can only view information, so it cannot place trades or change anything.
Unavailable. This server has no hosted endpoint yet, so ahel can't serve it.
After adding canary, ask your AI for an account overview or today's brief to see what it can pull up.
What your AI can do with it
- Review account details
- See your current positions
- Get a daily brief
- Check reporting status
- Review risk information
- View Edge data
From the project's README
As published by osauer/canary in README.md.
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
Start
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.
Choose your surface
| 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.
What Canary helps you answer
- What needs attention now?
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. - How is the book exposed? Account and position reads identify one selected account, group stock and option legs by underlying, and keep missing values separate from real zeros. Multi-account ambiguity is refused rather than blended.
- What did past decisions actually deliver? Canary Edge uses retained IBKR Flex records and exact-contract market history. It reviews account P/L after confirmed external flows, compares adequately repeated stock and ETF opens/adds/trims/exits with leaving the prior position unchanged over 1, 5, and 20 sessions, and reports broker-recorded option P/L separately. It does not infer intent, recommend a trade, or claim causation.
- Can this reading be trusted? Quotes, calendars, breadth, gamma, regime, stress, earnings, borrow, halt, and reporting sources carry their own health, freshness, coverage, and last-good state. Unavailable evidence stays unavailable.
- What work already exists? Proposals, opportunities, and the local order journal show what is blocked or ready for human review and how it changed. They are evidence, not broker 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.
MCP and agent frameworks
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.
Continuously running agents can keep this MCP child process available and
reuse Canary's brief, calendar, regime, risk, and order evidence. Use
canary_calendar for official exchange sessions and coverage bounds; it is not
an economic-release calendar. The host owns durable wakeups, model budgets,
and process recovery. Canary owns the observations and risk semantics. See
continuous hosts for
the lifecycle and data-quality contract.
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.
Shell and paired app
Every data command supports --json:
canary account
canary positions --by underlying
canary brief
canary edge
canary rules
canary regime --explain
canary stress --details
canary technical SPY,QQQ
canary calendar --market us --days 14
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.
Go wire-protocol library
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.
One authority, several adapters
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.
Safety and privacy
- Read-only is the normal product. The installer, updater, and MCP Bundle select the standard binary, whose broker-write handlers are not compiled in.
- MCP has no preview or execution tools in any build. It cannot place, modify, cancel, submit, or exercise an order.
- Trading is a separate decision. The experimental trading artifact keeps actions behind pinned connection authority, a fresh exact review contract, broker eligibility where applicable, healthy journaling, daemon revalidation, runtime freeze, and transaction-specific human authority.
- Missing evidence stays missing. A stale or unavailable input never becomes a clean result merely because an older value exists.
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.
Help and project information
- Install and first run
- Daily desk workflow
- Troubleshooting
- Configuration
- Release and update policy
- Contributing
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.
Signals
- GitHub stars
- 8
- Last commit
- Sep 2026
Advanced
- Delivery
- canary MCP server → your ahel gateway (mcp.ahel.ai) → every connected AI client.
- Catalog kind
- mcp-server
- Gateway key
io-github-osauer-canary- Source
- github.com/osauer/canary