A small control layer
for financial agents.
Scaur gives an agent a few public-equity research tools and a narrow, policy-checked route to Robinhood. Research can read the market. Execution still has to pass policy.
A steep cliff or rock face.
Research
Start with the read-only part.
Scaur can research one public equity or compare two to five in the same authenticated Robinhood session. Each result contains the underlying observations and a hash of the assembled evidence.
| Tool | Input | Returns | Account authority |
|---|---|---|---|
scaur_research_equity | one symbol | quote, fundamentals, daily RSI, earnings, evidence hash | none |
scaur_compare_equities | 2–5 symbols | complete records, compact comparison, combined hash | none |
scaur_live_order | one limit order | policy decision, then submission receipt if allowed | bounded and opt-in |
The first two tools do not receive an account number, read portfolio data, or call an order tool. MCP tool identifiers use the scaur_ namespace.
Authority
An order follows one path.
The operator chooses the account, policy, state, venue, credentials, and session limits when Scaur starts. The calling agent cannot change those values through an order request.
agent proposes an order
│
▼
┌──────────────────────────┐
│ scaur │
│ policy + state + limits │
└──────────────────────────┘
│
├── denied ──────► decision receipt / stop
│
└── allowed ─────► exact-order permit
│
▼
credentialed relay
The permit is specific. Change the symbol, side, quantity, price, account, or route and it no longer matches.
The permit is consumed once. Reusing an approved action fails instead of creating a second order.
The relay stays separate. Venue credentials never enter the agent-facing tool schema.
Records
What the system leaves behind.
The useful output is not a dashboard. It is a small set of records another process can inspect or replay.
- Research evidence
- Timestamped market observations and a domain-separated SHA-256 identifier.
- Decision receipt
- The exact checks that passed or failed and the facts used to evaluate them.
- Execution permit
- Short-lived, single-use authority bound to one order.
- Event history
- A local JSONL ledger whose entries are chained by hash.
Comparison
Two equities, one evidence trail.
A validated AAPL/MSFT comparison returned two complete records and one combined hash. The important boundary is included in the result itself.
{
"schemaVersion": "scaur.equity-comparison.v1",
"items": 2,
"accountDataRead": false,
"orderToolsCalled": false,
"combinedEvidenceHash": "sha256:…"
}
Limits
The boundary is clearer than the roadmap.
Built read-only equity research, multi-equity comparison, deterministic policy checks, paper cycles, exact-order permits, and the event ledger.
Experimental an explicitly armed Robinhood equity limit-order relay with operator-selected ceilings.
Not built production custody and reconciliation, signed state, a multi-host event store, or Robinhood Chain registry and settlement adapters.
Scaur is experimental software, not a broker or fund. Paper mode is the default. A successful live tool result means submitted, not filled.
Run locally
Use research mode first.
git clone https://github.com/scaurMCP/scaur.git
cd scaur
npm ci
npm test
npm run mcp:research
Then ask the connected agent to use scaur_compare_equities and return the evidence.