skills/smithery.ai/nextjs-server-components

nextjs-server-components

Installation
SKILL.md

Next.js Server Components Skill

Patterns for using React Server Components effectively.

Server Components (Default)

Basic Server Component

// This is a Server Component by default
async function UserProfile({ userId }: { userId: string }) {
  // Direct database access
  const user = await db.user.findUnique({ where: { id: userId } })
Installs
3
First Seen
Mar 21, 2026
nextjs-server-components from smithery.ai