MCP server intelligence profile

@jpisnice/shadcn-ui-mcp-server MCP Server

A mcp server to allow LLMS gain context about shadcn ui component structure,usage and installation

Local OnlyJpisnice
Awaiting current scanNpm · 2.0.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
10Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @jpisnice/shadcn-ui-mcp-server from npm

Version 2.0.0 declares 1 executable entrypoint.

npm install --save-exact @jpisnice/shadcn-ui-mcp-server@2.0.0
npx -y -p @jpisnice/shadcn-ui-mcp-server@2.0.0 @jpisnice/shadcn-ui-mcp-server
MCP client configuration example
{
  "mcpServers": {
    "@jpisnice/shadcn-ui-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@jpisnice/shadcn-ui-mcp-server@2.0.0",
        "@jpisnice/shadcn-ui-mcp-server"
      ]
    }
  }
}

Identity

Canonical slugjpisnice-shadcn-ui-mcp-server-fbcfbcceDeploymentLocal Only
Canonical packagenpm:@jpisnice/shadcn-ui-mcp-serverRepositoryJpisnice/shadcn-ui-mcp-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@jpisnice/shadcn-ui-mcp-server2.0.08Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@jpisnice/shadcn-ui-mcp-server2.0.0CurrentSep 5, 202610 toolsSucceeded · 2 resources · 5 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
shadcn-ui-mcp-serverServer-reported name
3Capability groups
Aug 14, 2026Observed

Tools 10

ToolCategoryAnnotationsRisk
apply_themeApply a TweakCN theme preset to the project
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query for theme (e.g., 'cyberpunk', 'modern')"
    },
    "presetId": {
      "type": "string",
      "description": "Specific preset ID if known"
    },
    "tailwindVersion": {
      "type": "string",
      "enum": [
        "3",
        "4"
      ],
      "description": "Tailwind CSS version (default: '4')"
    },
    "dryRun": {
      "type": "boolean",
      "description": "If true, returns preview instead of writing files"
    }
  }
}
get_blockGet source code for a specific shadcn/ui v4 block (e.g., calendar-01, dashboard-01)
Input schema
{
  "type": "object",
  "properties": {
    "blockName": {
      "type": "string",
      "description": "Name of the block (e.g., \"calendar-01\", \"dashboard-01\", \"login-02\")"
    },
    "includeComponents": {
      "type": "boolean",
      "description": "Whether to include component files for complex blocks (default: true)"
    }
  },
  "required": [
    "blockName"
  ]
}
get_componentGet the source code for a specific shadcn/ui v4 component
Input schema
{
  "type": "object",
  "properties": {
    "componentName": {
      "type": "string",
      "description": "Name of the shadcn/ui component (e.g., \"accordion\", \"button\")"
    }
  },
  "required": [
    "componentName"
  ]
}
get_component_demoGet demo code illustrating how a shadcn/ui v4 component should be used
Input schema
{
  "type": "object",
  "properties": {
    "componentName": {
      "type": "string",
      "description": "Name of the shadcn/ui component (e.g., \"accordion\", \"button\")"
    }
  },
  "required": [
    "componentName"
  ]
}
get_component_metadataGet metadata for a specific shadcn/ui v4 component
Input schema
{
  "type": "object",
  "properties": {
    "componentName": {
      "type": "string",
      "description": "Name of the shadcn/ui component (e.g., \"accordion\", \"button\")"
    }
  },
  "required": [
    "componentName"
  ]
}
get_directory_structureGet the directory structure of the shadcn-ui v4 repository
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Path within the repository (default: v4 registry)"
    },
    "owner": {
      "type": "string",
      "description": "Repository owner (default: \"shadcn-ui\")"
    },
    "repo": {
      "type": "string",
      "description": "Repository name (default: \"ui\")"
    },
    "branch": {
      "type": "string",
      "description": "Branch name (default: \"main\")"
    }
  }
}
get_themeGet details of a specific tweakcn theme
Input schema
{
  "type": "object",
  "properties": {
    "themeName": {
      "type": "string",
      "description": "Name or ID of the theme to retrieve"
    }
  },
  "required": [
    "themeName"
  ]
}
list_blocksGet all available shadcn/ui v4 blocks with categorization
Input schema
{
  "type": "object",
  "properties": {
    "category": {
      "type": "string",
      "description": "Filter by category (calendar, dashboard, login, sidebar, products)"
    }
  }
}
list_componentsGet all available shadcn/ui v4 components
Input schema
{
  "type": "object",
  "properties": {}
}
list_themesList available tweakcn themes
Input schema
{
  "type": "object",
  "properties": {}
}

Resources 2

  • get_componentsresource:get_components

    List of available shadcn/ui components that can be used in the project

  • get_theme_metadataresource:get_theme_metadata

    Returns metadata about the currently configured theme

Resource templates 2

  • get_install_script_for_componentresource-template:get_install_script_for_component?packageManager={packageManager}&component={component}

    Generate installation script for a specific shadcn/ui component based on package manager

  • get_installation_guideresource-template:get_installation_guide?buildTool={buildTool}&packageManager={packageManager}

    Get the installation guide for shadcn/ui based on build tool and package manager

Prompts 5

  • build-shadcn-pagebuild-shadcn-page

    Generate a complete shadcn/ui page using v4 components and blocks

  • create-auth-flowcreate-auth-flow

    Generate authentication pages using shadcn/ui v4 login blocks

  • create-dashboardcreate-dashboard

    Create a comprehensive dashboard using shadcn/ui v4 blocks and components

  • create-data-tablecreate-data-table

    Create advanced data tables with shadcn/ui components

  • optimize-shadcn-componentoptimize-shadcn-component

    Optimize or enhance existing shadcn/ui components with best practices

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

@jpisnice/shadcn-ui-mcp-server MCP Server questions

How do I install @jpisnice/shadcn-ui-mcp-server MCP Server?

Install the selected package version with: npm install --save-exact @jpisnice/shadcn-ui-mcp-server@2.0.0

What tools does @jpisnice/shadcn-ui-mcp-server MCP Server provide?

@jpisnice/shadcn-ui-mcp-server MCP Server exposed 10 tools during independent protocol observation, including apply_theme, get_block, get_component, get_component_demo, get_component_metadata, get_directory_structure, get_theme, list_blocks, and others.

Is @jpisnice/shadcn-ui-mcp-server MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.