VestBridge is an open-source trust layer for agentic trading. It connects AI agents to your brokerage and securely enforces guardrails on every trade regardless of what permissions your agent has.
Unified tool schema for any broker. get_quote, place_order, get_positions. Your agent learns one API regardless of the underlying broker.
Define mandates: allowed assets, position limits, order size caps, concentration limits, time windows. Every order is checked before it reaches the broker. Mandates are cryptographically signed — your agent can't modify its own rules.
VestBridge runs as a separate process with its own permissions. Your agent communicates only through MCP tools. It cannot access VestBridge source code, mandate files, broker credentials, or the audit log. One command: vestbridge serve.
Append-only log of every action. Hash-chained, sequenced, tamper-evident. Every entry records what the agent tried, which mandate was evaluated, and whether it passed or failed. Export for compliance review.
Other MCP servers trust your agent. VestBridge doesn't.
Mandates are signed with your key. Even if an agent reaches the file, it can't forge a valid signature.
The audit log is hash-chained and write-protected. No entry can be modified or deleted.
VestBridge's own code and config are mounted read-only. The agent can't patch its way past the rules.
Connect to the brokers you already use.
Install, configure your mandate, and start the server. Security is built in.
# Install
$ pip install vestbridge
# Create and sign your first mandate
$ vestbridge init
# → creates ~/.vest/ directory structure
# → generates owner keypair
# → creates default mandate from interactive prompts
# → signs mandate with owner key
# Start the server (runs as isolated process)
$ vestbridge serve --broker paper
# → starts MCP server with process isolation
# → mandate files are read-only
# → audit log is append-only
# → ready to connect your AI agent
{
"mcpServers": {
"vestbridge": {
"command": "vestbridge",
"args": ["--broker", "robinhood"]
}
}
}
From broker connectivity to verifiable compliance, one phase at a time.
Broker adapters for Robinhood, Interactive Brokers, Alpaca. Paper trading adapter for testing.
Mandate engine. Signed YAML mandates. Pre-trade validation. Agent identity.
Append-only hash-chained audit log. vest audit verify CLI. Export for compliance review.
Agent session lifecycle. Dead agent detection. Scheduled actions. Event trigger interface.
Vest Registry for external anchoring. Third-party verification API. Compliance reporting.
Early access to VestBridge and broker adapter releases. No spam.
Thanks! We'll be in touch.
Something went wrong. Try again or email us directly.