exec-mcp is the execution layer for Trader27. It owns exchange access, account metadata, balances, fees, market metadata, order placement, order lookup, and cancel flows.
./run.sh./restart.sh./killserver.sh./tests.shGET /health is the runtime health probe used by Dockerrun.sh uses uvicorn app:app and will source .venv/bin/activate if present.
account_secrets; never expose them through dashboard or MCP responses.repo.py, services_bitstamp.py, and services_orders.py.bitstamp.py and websocket handling in bitstamp_private_ws.py.storage.py.venue_account_ref is the exchange-side account reference shown in the dashboard.client_id is optional on orders, stored locally, and used to filter open orders and recover tracked state.finished, support cancelled and all, and balance reporting reads stored account balance snapshots./app/data mounted so the SQLite file survives restarts.README.mdPROJECT.mdsrc/exec_mcp/server.pysrc/exec_mcp/services_orders.pysrc/exec_mcp/services_bitstamp.pysrc/exec_mcp/bitstamp.pysrc/exec_mcp/storage.py