🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@usevyre/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@usevyre/mcp-server

useVyre MCP server — gives Claude Desktop real-time access to component context

latest
Source
npmnpm
Version
1.0.18
Version published
Weekly downloads
29
-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

@usevyre/mcp-server

MCP (Model Context Protocol) server for useVyre — gives Claude Desktop and other MCP clients real-time access to component context, valid props, and anti-patterns.

npm MIT License

Setup — Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "usevyre": {
      "command": "npx",
      "args": ["-y", "@usevyre/mcp-server"]
    }
  }
}

Restart Claude Desktop. The useVyre tools will appear in the tools panel.

Available tools

ToolDescription
get_component_infoFull context for a component — props, variants, anti-patterns, examples
get_valid_propsAll valid prop names and values for a component
check_valid_prop_valueValidate a specific prop value before generating code
suggest_componentFind the right component for a use case
get_token_infoLook up a design token by name or category
get_full_contextEntire AI context block (all components + tokens)
get_anti_patternsAll known hallucination patterns, optionally filtered by component
get_version_infoPackage version and context validity information

Example prompts

"What are the valid variants for the Button component?"
→ get_valid_props({ component: "Button" })

"Is variant='error' valid on Alert?"
→ check_valid_prop_value({ component: "Alert", prop: "variant", value: "error" })

"What component should I use for a search box?"
→ suggest_component({ useCase: "search box with keyboard navigation" })

Docs

usevyre.com/docs/ai-tooling/mcp-server

Keywords

mcp

FAQs

Package last updated on 18 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts