Skip to main content

Build Web3 Plugin

Updated on
Aug 14, 2026

Overview

Build Web3 plugin helps AI coding agents plan, build, review, and prepare Web3 apps for production.

The plugin installs two components:

  • build-web3 skill: guides app design, selects chains and stacks, generates starters, reviews existing projects, and fixes approved issues. It also includes Quicknode product references so the agent can use the correct methods, parameters, and schemas when needed.
  • Quicknode MCP server: manages Quicknode infrastructure such as endpoints, security, rate limits, logs, usage, and billing. Requires a Quicknode account.

If you only need the build, review, and security workflows, you can install the build-web3 skill on its own without the Quicknode MCP server.

Installation

Installs the skill and the MCP server. Pick your client below.


Add the marketplace, then install the plugin:

/plugin marketplace add quicknode/agent-plugins
/plugin install build-web3@quicknode-agent-plugins

Start a new session. Claude Code then loads the skill and registers the quicknode MCP server. The first MCP tool call opens the Quicknode OAuth flow in your browser.

What the Skill Covers

The skill loads a small router file first. It then reads only the reference it needs for the task. This keeps the agent's context small.

Build Guidance

These references describe the app shape and the decisions behind it, before any provider or product.

ReferenceCovers
use-case-playbooksBots, trackers, prediction markets, indexers, and wallet-paid agents
app-architecturesFrontend, backend worker, indexer, and data pipeline shapes
chains-and-stacksEVM, Solana, and Hyperliquid, and the starter stack for each
starter-patternsMinimal starter layout, entry point, and environment placeholders
data-and-infraRPC, real-time events, historical data, storage, analytics, and payments
security-and-productionEndpoint exposure, security controls, and environment separation
quicknode-providerHow to map app capabilities to Quicknode
quicknode-productsThe product catalog and which product fits which need
agent-access-and-automationKeyless agent access and account automation
addonsAdd-ons that replace custom infrastructure

Quicknode Product References

Each reference gives method tables, setup code, schemas, and a link to the matching page in these docs.

CategoryProducts
InfrastructureCore RPC API, IPFS
Real-Time DataStreams, Streams Backfills, Webhooks, Solana gRPC, HyperCore gRPC / Hyperliquid
Indexed DataSQL Explorer, Agent Identity (ERC-8004), Blockbook, Metaplex DAS API, Ordinals & Runes API
Trading & DeFiSwap API
PlatformAdmin API, Key-Value Store, Quicknode SDK
Agent Surfacex402, MPP, Agent Subscriptions, Quicknode CLI, Quicknode MCP

Example Prompts

Build:

Help me plan a minimal Web3 app.
Build a TypeScript script that streams USDC transfers on Base into Postgres.

Improve:

Help me harden my Web3 app for mainnet.
Audit this repo for exposed endpoint URLs and committed secrets.

Manage infrastructure (MCP):

Create a Base mainnet endpoint and add a rate limit of 100 requests per second.

Query products:

Write a SQL Explorer query that returns the top 20 Hyperliquid traders by volume this week.

Safety defaults

The agent uses testnet when you do not name a network. It never asks for private keys. It asks you to confirm before it sends transactions, spends funds, or changes endpoint security.

tip

The skill loads on its own for a build or security task. For a product question, name the skill in your prompt: "use the build-web3 skill to write a Streams filter for USDC transfers on Base".

Resources