소스 정보
- 저장소
- holaboss-ai/holaOS
- 최근 소스 활동
- 2026년 7월 26일 07:48
- 감지된 SKILL.md 언어
- 영어
- 스타
- 10,012
- 포크
- 707
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/holaboss-ai/holaOS --skill mcp-configurator명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Create short videos and motion clips from a text description using AI video generation.
Install workspace skills from curated sources or import open-source skills from GitHub.
Analyze your audience demographics, behavior, and preferences for targeted content.
| name | mcp-configurator |
| description | Add or update workspace MCP servers using holaOS mcp_registry syntax. |
Use this skill when the task is to add, remove, or update MCP access in a holaOS workspace.
workspace.yaml at the workspace root. Do not create mcp.json, .cursor/mcp.json, claude_desktop_config.json, or another generic MCP config unless the user explicitly asks for that format.mcp_registry.mcp_registry.allowlist.tool_ids must use strict server.tool syntax.mcp_registry.allowlist.tool_ids or setting it to [] means all discovered tools from enabled configured servers stay available for that run.runtime/harnesses/src/embedded-skills/.Use this shape for remote HTTP MCP servers:
mcp_registry:
servers:
context7:
type: remote
url: https://mcp.context7.com/mcp
enabled: true
timeout_ms: 30000
headers:
CONTEXT7_API_KEY: "{env:CONTEXT7_API_KEY}"
allowlist:
tool_ids:
- context7.lookup
- context7.search
Header values must be either:
{env:ENV_VAR_NAME}This is invalid:
headers:
CONTEXT7_API_KEY: "{env:ctx7sk-live-abc123}"
That is a placeholder-shaped literal secret, not an environment-variable reference.
Use this shape for local stdio MCP servers:
mcp_registry:
servers:
my_server:
type: local
command:
- npx
- -y
- "@acme/my-mcp"
enabled: true
timeout_ms: 30000
environment:
MY_SERVER_API_KEY: "{env:MY_SERVER_API_KEY}"
Local MCP commands must be a non-empty list of command tokens.
Use mcp_registry.catalog for workspace-local tools implemented inside the repo:
mcp_registry:
servers:
workspace:
type: local
catalog:
workspace.echo:
module_path: tools.echo
symbol: echo_tool
allowlist:
tool_ids:
- workspace.echo
Notes:
mcp_registry.servers.workspace must stay local.command for workspace.workspace.<tool> allowlist entry must have a matching mcp_registry.catalog entry.If the MCP tools come from a workspace app's app.runtime.yaml mcp.tools, prefer the app-managed flow:
mcp_registry.servers.<app_id> and mcp_registry.allowlist.tool_idsworkspace.yaml and confirm the final shape is mcp_registry, not a generic MCP config format.server.tool.mcp_registry.servers.{env:ENV_VAR_NAME} when environment indirection is intended.