AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Coinbase Agent

mcp-braindao-coinbase-agent · by BrainDAO

Coinbase AgentKit proof of concept wired into IQAI ADK through MCP.

No reviews yet
0 installs
14 views
0.0% view→install

Install

$ agentstack add mcp-braindao-coinbase-agent

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-braindao-coinbase-agent)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
11mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Coinbase Agent? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Coinbase Agent

A tiny proof‑of‑concept that wires Coinbase AgentKit into the IQAI ADK (adk-ts) using the Model Context Protocol (MCP). AgentKit providers are exposed as MCP SDK tools, then adapted into ADK tools so your ADK agent can call on-chain actions through Coinbase.

How it works

  • AgentKit → MCP: AgentKit's MCP package exposes its action providers as MCP tools plus a handler.
  • MCP → ADK: Those MCP tools are converted to ADK BaseTools and attached to an AgentBuilder.
  • Model: Uses OpenRouter if OPEN_ROUTER_KEY is set; otherwise falls back to the model string configured in LLM_MODEL.

Quick start

  1. Install
pnpm install
  1. Configure environment

Create a .env with the essentials:

DEBUG=false
OPEN_ROUTER_KEY=your_openrouter_key
LLM_MODEL=gpt-4.1-mini

# Required for AgentKit / CDP
# Get these 2 from: https://portal.cdp.coinbase.com/projects/api-keys
CDP_API_KEY_ID=...
CDP_API_KEY_SECRET=...

WALLET_PRIVATE_KEY=0x...
# get it from: https://zerion.io/api
ZERION_API_KEY=...
  1. Run

Run the predefined set of agent prompts src/index.ts

pnpm dev

Have a full on conversation using the adk cli (requires adk-cli package installed )

# Spins up chat interface on cli
adk run
# (or)
# Opens up web interface to chat with the agent
adk web

Included tools (via AgentKit)

  • defillamaActionProvider (Querying defi llama platform for coin data & details)
  • pythActionProvider (Retrieves price data from Pyth price feed)
  • walletActionProvider (getting wallet details & enables native token transfer)
  • erc20ActionProvider (enables transfer & get balance of erc20 token)
  • x402ActionProvider (enables http requests)
  • zerionActionProvider (provides portfolio overview & fungible token positions, requires API key)

These are automatically adapted into ADK tools; you can add or remove providers in src/agents/coinbase/tools/agentkit.ts. Check for more providers on the AgentKit repo.

Project layout

src/
  env.ts                      # env + model selection (OpenRouter optional)
  index.ts                    # simple demo prompt
  agents/coinbase/
    agent.ts                  # ADK agent wiring
    tools/
      agentkit.ts            # AgentKit + providers setup & MCP → ADK tool adapter

References

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.