From c5711e09f9c3a44fe21f8613742f7ba52dd9a7f7 Mon Sep 17 00:00:00 2001 From: Smartcoded <155464950+codedforum@users.noreply.github.com> Date: Wed, 26 Aug 2026 21:02:16 +0100 Subject: [PATCH 1/2] Add Corvo Edge plugin page --- docs/agents/plugins/native/corvo.mdx | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 docs/agents/plugins/native/corvo.mdx diff --git a/docs/agents/plugins/native/corvo.mdx b/docs/agents/plugins/native/corvo.mdx new file mode 100644 index 000000000..c23a3ff08 --- /dev/null +++ b/docs/agents/plugins/native/corvo.mdx @@ -0,0 +1,39 @@ +--- +title: "Corvo Edge" +description: "Token safety checks, live market data and self-custody swap preparation through Corvo Edge and Base MCP send_calls." +keywords: ["Corvo plugin", "Base MCP Corvo", "token safety", "honeypot check", "rug check", "swap prepare", "Base trading terminal"] +--- + +Corvo Edge is a chat-first, self-custody trading terminal on Base. The plugin uses Corvo as a safety oracle and market brain: honeypot and tax checks, tradeability, live prices and movers, then builds unsigned swap calldata the user signs through Base MCP `send_calls`. Corvo never holds keys and cannot execute on anyone's behalf. + +**Chains:** Base (reads also cover Solana, Fogo and Robinhood Chain listings). + +**Operations:** token safety scans, tradeability checks, curated token set, live prices, market pulse and movers, best-route swap quotes, swap calldata building. + + +**Safety first.** Run the safety read before preparing any trade on an unfamiliar token. `tradeability.can_sell: false` is a stop, not a warning. + + +## Try it + +```text Safety check +Is 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 safe to trade on Base? +``` + +```text Market read +What are the top movers on Base right now? +``` + +```text Prepared swap +Swap 0.001 ETH to USDC on Base and let me sign it +``` + +## Pattern + +The assistant calls `GET /api/public/token/safety` and blocks on honeypot or can_sell false, then `GET /api/swap/route` for the quote and builds calldata for the sender. Native-token input maps to one router call with `value` set. Prepared responses may include `simulated`, an eth_simulateV1 preview of the exact calldata, and a `revert` preview means do not send. + +## Reference + + + Read endpoints, keyed prepare, send_calls mapping, decimals rules and stop conditions. + From 0dcb8541b506285a5d59cf55a2ab9f55c0d5e0c9 Mon Sep 17 00:00:00 2001 From: Smartcoded <155464950+codedforum@users.noreply.github.com> Date: Wed, 26 Aug 2026 21:04:27 +0100 Subject: [PATCH 2/2] Register Corvo Edge plugin page in navigation --- docs/docs.json | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/docs.json b/docs/docs.json index 2ff105367..c1b6b386a 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -750,6 +750,7 @@ "agents/plugins/native/bitrefill", "agents/plugins/native/brickken", "agents/plugins/native/clawnch", + "agents/plugins/native/corvo", "agents/plugins/native/flaunch", "agents/plugins/native/gmgn", "agents/plugins/native/hydrex",