ADHD-Closet

Context7 Library ID Reference

Last Updated: 2026-02-15
Purpose: Quick reference for Context7 MCP library IDs to avoid repeated searches

How to Use This Document

When using Context7 MCP tools, you can reference library IDs directly from this document:

// Instead of calling resolve-library-id first:
context7-query-docs: {
  libraryId: "/vercel/next.js/v16.1.5",  // ← From this document
  query: "How to configure API routes?"
}

Primary Tech Stack

Next.js

Primary Library ID: /vercel/next.js/v16.1.5
Alternative IDs:

Stats:

Available Versions:

Use Cases:


React

Primary Library ID: /facebook/react (implied from Next.js docs)

Use Cases:

Note: React documentation is often integrated within Next.js docs for version compatibility.


Prisma

Primary Library ID: /prisma/docs
Alternative IDs:

Stats:

Available Versions:

Current Project Version: 7.3.0

Use Cases:


BullMQ

Primary Library ID: /taskforcesh/bullmq
Alternative IDs:

Stats:

Current Project Version: 5.67.1

Use Cases:


Bun.js

Primary Library ID: /oven-sh/bun

Stats:

Current Project Version: 1.3.6

Use Cases:


Three.js Ecosystem

React Three Fiber

Primary Library ID: /pmndrs/react-three-fiber

Stats:

Current Project Version: 9.5.0

Use Cases:

Drei (React Three Fiber Helpers)

Primary Library ID: /pmndrs/drei

Stats:

Current Project Version: 10.7.7

Use Cases:

Three.js Core

Primary Library ID: /mrdoob/three.js (implied)

Current Project Version: 0.182.0

Use Cases:


Validation & Type Safety

Zod

Primary Library ID: /colinhacks/zod/v4.0.1
Alternative IDs:

Stats:

Available Versions:

Use Cases:


Styling

Tailwind CSS

Primary Library ID: /websites/tailwindcss
Alternative IDs:

Stats:

Current Project Version: 4.x

Use Cases:


Supporting Libraries

Redis Client

ioredis

Library ID: (Not queried, but standard npm package)

Current Project Version: 5.9.2

Documentation: Available via npm documentation

Use Cases:


Image Processing

Sharp

Library ID: (Not queried, but standard npm package)

Current Project Version: 0.34.5

Use Cases:


Database Driver

node-postgres (pg)

Library ID: (Not queried, but standard npm package)

Current Project Version: 8.17.2

Use Cases:


Mobile/Native

Capacitor

Primary Library ID: /ionic-team/capacitor (implied)

Current Project Versions:

Plugins:

Use Cases:


PWA

next-pwa

Library ID: (Not queried, standard Next.js plugin)

Current Project Version: 5.6.0

Use Cases:


NestJS Bull

Library ID: /nestjs/bull

Stats:

Use Case: If migrating to NestJS framework


React Postprocessing

Library ID: /pmndrs/react-postprocessing

Stats:

Use Case: Advanced visual effects for Three.js scenes


React Three A11y

Library ID: /pmndrs/react-three-a11y

Stats:

Use Case: Accessibility features for WebGL applications


React Three CSG

Library ID: /pmndrs/react-three-csg

Stats:

Use Case: Boolean operations on 3D models


bunqueue

Library ID: /egeominotti/bunqueue

Stats:

Use Case: Alternative to BullMQ specifically for Bun runtime (zero external dependencies, SQLite storage)


Express Zod API

Library ID: /robintail/express-zod-api

Stats:

Use Case: If building Express.js API instead of Next.js API routes


Quick Reference Commands

Query with Specific Version

context7-query-docs: {
  libraryId: "/vercel/next.js/v16.1.5",
  query: "Your question here"
}

Query Latest Version

context7-query-docs: {
  libraryId: "/vercel/next.js",
  query: "Your question here"
}

Multiple Library Comparison

Query both sources for comprehensive answers:

# Query 1
context7-query-docs: {
  libraryId: "/prisma/docs",
  query: "Adapter configuration"
}

# Query 2
context7-query-docs: {
  libraryId: "/websites/prisma_io",
  query: "Adapter configuration"
}

Context7 Usage Tracking

Monthly Quota: 1,000 requests
Used in This Validation: 12 queries
Remaining: 988 queries

Queries Used (2026-02-15):

  1. /vercel/next.js/v16.1.5 - Next.js configuration and patterns
  2. /prisma/docs - Prisma adapter and client setup
  3. /taskforcesh/bullmq - BullMQ queue configuration
  4. /pmndrs/react-three-fiber - React Three Fiber patterns
  5. /oven-sh/bun - Bun.js spawn and file operations
  6. /colinhacks/zod/v4.0.1 - Zod validation schemas

Efficiency Tips:

  1. Batch Related Queries: Ask multiple questions in a single query when possible
  2. Use Specific Versions: Reference exact versions when validating production code
  3. Cache Common Patterns: Store frequently-used patterns in project memory
  4. Prioritize Critical Queries: Use for unfamiliar libraries or breaking changes

Version Update Guide

When upgrading dependencies, update this document:

  1. Check for new versions available in Context7
  2. Test queries against new version library IDs
  3. Update “Current Project Version” fields
  4. Document any breaking changes or new patterns
  5. Update validation date at top of document

Additional Resources

Finding New Library IDs

If you need a library not listed here:

context7-resolve-library-id: {
  libraryName: "library-name",
  query: "What you want to do with it"
}

This will return available library IDs with:

Best Practices

  1. Always use specific versions when available (e.g., /vercel/next.js/v16.1.5)
  2. Prefer official sources (highest benchmark scores and reputation)
  3. Use high snippet counts for comprehensive examples
  4. Check multiple sources for critical implementations

Maintained By: GitHub Copilot Agent
Update Frequency: After major dependency upgrades or every 6 months
Last Validation: 2026-02-15 (STACK_VALIDATION.md)