Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计异常

gluestack-mcp-toolsgluestack MCP tools 搜索

Agent Skill

gluestack-mcp-tools 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

539

周安装

22

GitHub Stars

142

下载量

174
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gluestack-mcp-tools(gluestack MCP tools 搜索)
来源仓库:https://github.com/thebushidocollective/han
仓库路径:skills/gluestack-mcp-tools
安装命令:
npx skills add https://github.com/thebushidocollective/han --skill gluestack-mcp-tools
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/thebushidocollective/han --skill gluestack-mcp-tools

简介

gluestack-mcp-tools 用于查找、检索和筛选相关信息,支持关键词匹配。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的信息定位需求。
  • 结合来源仓库和原始 README 可进一步核验具体用法。
  • 安装命令:npx skills add https://github.com/thebushidocollective/han --skill gluestack-mcp-tools。
  • 建议确认权限范围和维护状态,避免触发联网或文件操作。

SKILL.md

gluestack-ui MCP Tools

Expert knowledge for using the gluestack-ui MCP server tools to discover, explore, and retrieve component source code and metadata.

Overview

The gluestack-ui MCP server provides direct access to the gluestack-ui component library through 6 specialized tools. Use these tools to explore available components, understand their variants, retrieve source code, and access Storybook demos.

When to Use These Tools

Use the MCP tools when you need to:

  • Discover what components are available in gluestack-ui
  • Get the actual source code for a component to copy into a project
  • Understand the variants (NativeWind, Themed, Unstyled) of a component
  • Access Storybook demos showing component usage patterns
  • Retrieve TypeScript props and dependencies for a component
  • Navigate the gluestack-ui monorepo structure

Available Tools

list_components

Lists all 70+ gluestack-ui components with their names and basic descriptions.

When to use: Start here when you need to know what components are available or find a component by name.

Example workflow:

  1. Call list_components to see all available components
  2. Identify the component that matches your needs
  3. Use get_component or get_component_metadata for details

list_component_variants

Shows the available style variants for a specific component: NativeWind, Themed, and Unstyled.

When to use: After identifying a component, use this to understand which styling approaches are supported.

Variants explained:

  • NativeWind: Tailwind CSS classes for React Native (recommended for new projects)
  • Themed: Token-based theming with design system integration
  • Unstyled: Base component with no styles (for complete customization)

get_directory_structure

Navigate the gluestack-ui monorepo to understand the package organization.

When to use: When you need to understand how gluestack-ui organizes its packages or find specific files within the repository.

get_component

Retrieves the complete source code for any gluestack-ui component.

When to use: When you need to copy component code into your project or understand the implementation details.

Example workflow:

  1. Use list_components to find the component name
  2. Use list_component_variants to choose a variant
  3. Call get_component with the component name and variant
  4. Copy the source code into your project's components/ui/ directory

get_component_demo

Accesses Storybook examples showing real-world usage patterns for components.

When to use: When you need to see how a component is used in practice, including prop combinations and composition patterns.

What you get:

  • Working code examples
  • Different prop combinations
  • Composition patterns with sub-components
  • Interactive states and variations

get_component_metadata

Retrieves TypeScript props, dependencies, and other metadata for a component.

When to use: When you need to understand the TypeScript interface, required props, or peer dependencies for a component.

Information provided:

  • TypeScript prop types and interfaces
  • Required vs optional props
  • Default values
  • Peer dependencies
  • Import statements

Common Workflows

Adding a New Component to Your Project

  1. Discover: list_components - Find the component you need
  2. Explore variants: list_component_variants - Choose NativeWind, Themed, or Unstyled
  3. Get source: get_component - Retrieve the full source code
  4. Check demos: get_component_demo - See usage examples
  5. Copy to project: Add the code to your components/ui/ directory

Understanding Component API

  1. Get metadata: get_component_metadata - See TypeScript props
  2. Check demos: get_component_demo - See prop usage in context
  3. Read source: get_component - Understand the implementation

Exploring Available Components

  1. List all: list_components - See the full component library
  2. Check structure: get_directory_structure - Understand organization
  3. Review demos: get_component_demo - See component capabilities

Best Practices

1. Start with Discovery

Always use list_components first when exploring. This gives you the canonical names to use with other tools.

# Good: Start with discovery
1. list_components -> find "Button"
2. get_component("Button", "nativewind")

# Avoid: Guessing component names
get_component("Btn") -> might not find it

2. Choose the Right Variant

  • NativeWind: Best for new projects using Tailwind CSS
  • Themed: Best when you have an existing design token system
  • Unstyled: Best when you need complete styling control

3. Check Demos Before Implementing

The Storybook demos show real-world usage patterns that may reveal:

  • Required composition patterns (e.g., Button needs ButtonText)
  • Prop combinations that work well together
  • Edge cases and accessibility considerations

4. Verify Dependencies

Use get_component_metadata to understand:

  • Peer dependencies that need to be installed
  • Other components that are used internally
  • TypeScript types that may need importing

Environment Configuration

The MCP server can operate in two modes:

GitHub Mode (Default)

Fetches components directly from the gluestack-ui GitHub repository.

# Optional: Increase API rate limits
export GITHUB_TOKEN="your-token-here"

Local Mode

Uses a local clone of the gluestack-ui repository for offline access.

# Point to your local clone
export GLUESTACK_PATH="/path/to/gluestack-ui"

Integration with Other Skills

Combine MCP tools with other gluestack skills:

  • gluestack-components: After getting source code, use component skill for implementation patterns
  • gluestack-theming: Use with Themed variant components for design token integration
  • gluestack-accessibility: Ensure retrieved components are implemented accessibly

Troubleshooting

Component Not Found

  • Verify the exact component name using list_components
  • Component names are case-sensitive
  • Some components may be grouped (e.g., FormControl components)

Rate Limiting

If using GitHub mode without a token:

  • Set GITHUB_TOKEN for increased limits
  • Or clone the repo locally and set GLUESTACK_PATH

Outdated Components

The MCP server fetches from the latest gluestack-ui repository. If you need a specific version:

  • Clone the specific version locally
  • Set GLUESTACK_PATH to your local clone

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.48%
按下载量换算60

Claude

32.6%
按下载量换算57

Cursor

18.75%
按下载量换算33

Gemini CLI

9.24%
按下载量换算16

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills