0
1
Source

Query Juicebox V5 documentation via REST API or MCP server. Search docs, get contract addresses, and find implementation guides.

Install

mkdir -p .claude/skills/jb-docs && curl -L -o skill.zip "https://mcp.directory/api/skills/download/7027" && unzip -o skill.zip -d .claude/skills/jb-docs && rm skill.zip

Installs to .claude/skills/jb-docs

About this skill

Juicebox V5 Documentation Lookup

Query Juicebox documentation via the REST API or MCP server.

MCP Server (Recommended)

Add to your Claude Code or MCP client configuration:

{
  "mcpServers": {
    "juice-docs": {
      "type": "http",
      "url": "https://docs.juicebox.money/api/mcp-sse"
    }
  }
}

MCP Tools Available

  • search_docs - Search documentation by keyword
  • get_doc - Get full document content by path
  • list_docs_by_category - List docs in a category
  • get_doc_structure - Get documentation structure

Direct MCP Call Example

curl -X POST https://docs.juicebox.money/api/mcp-sse \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_docs","arguments":{"query":"pay hook"}}}'

REST API Endpoints

Search Documentation

POST https://docs.juicebox.money/api/mcp/search
Content-Type: application/json

{
  "query": "pay hook",
  "category": "all",    # all, developer, user, dao, ecosystem
  "version": "v5",      # v3, v4, v5, all
  "limit": 10
}

Get Specific Document

POST https://docs.juicebox.money/api/mcp/get-doc
Content-Type: application/json

{
  "path": "dev/v5/learn/overview.md"
}

List Documents by Category

GET https://docs.juicebox.money/api/mcp/list-docs?category=developer&version=v5

Get Documentation Structure

GET https://docs.juicebox.money/api/mcp/structure

Using WebFetch

Use WebFetch to query the API or fetch documentation pages directly:

Search for documentation

WebFetch https://docs.juicebox.money/dev/v5/build/pay-hook/
"Extract how to implement a pay hook"

Fetch specific pages

WebFetch https://docs.juicebox.money/dev/v5/learn/overview/
"Summarize the V5 protocol overview"

Documentation Structure

/dev/                    # Developer documentation root
/dev/v5/learn/           # Conceptual documentation
/dev/v5/build/           # Implementation guides
/dev/v5/api/             # API reference
/dev/v5/api/core/        # Core contract docs

Available Documentation

Protocol Documentation

  • Learn: Conceptual guides and protocol overview
  • Build: Implementation guides and tutorials
  • API: Technical specifications and contract interfaces

Contract Addresses

  • Deployed addresses for all networks (Ethereum, Optimism, Arbitrum, Base)
  • Latest V5 contract addresses
  • Hook deployer addresses

Code References

  • Interface definitions
  • Struct documentation
  • Event signatures

Common Documentation Queries

"What's the JBController address on mainnet?"

Use the /references folder for offline contract addresses, or fetch from docs.

"How do I implement a pay hook?"

WebFetch https://docs.juicebox.money/dev/v5/build/pay-hook/
"Extract implementation steps for pay hooks"

"What events does JBMultiTerminal emit?"

WebFetch https://docs.juicebox.money/dev/v5/api/core/jbmultiterminal/
"List all events emitted by JBMultiTerminal"

Official Resources

Generation Guidelines

  1. Use WebFetch to query documentation pages directly
  2. Reference the /references folder for offline interface/struct definitions
  3. Provide direct links to relevant documentation
  4. Default to V5 unless user explicitly asks about older versions

Example Prompts

  • "What's the JBController address on Optimism?"
  • "Show me the documentation for pay hooks"
  • "What events does the terminal emit?"
  • "Get the latest V5 contract addresses"

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

1,6841,428

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

1,2621,324

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

1,5331,147

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

1,355809

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

1,263727

pdf-to-markdown

aliceisjustplaying

Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.

1,481684