원클릭으로
skill-with-mcp-json-conflict
A test skill with BOTH frontmatter mcp-servers AND a companion mcp.json (tests mcp.json precedence)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
A test skill with BOTH frontmatter mcp-servers AND a companion mcp.json (tests mcp.json precedence)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
A test skill that declares allowed-tools as a YAML list
A test skill that declares allowed-tools as a space-separated string
A test skill with MCP servers configured via companion mcp.json file
A test skill with both stdio and HTTP MCP server examples in frontmatter
A test skill with multiple Python tool examples in frontmatter
A simple example skill that demonstrates the basic structure and functionality. Use when you need to show how skills work or test skill loading.
SOC 직업 분류 기준
| name | skill-with-mcp-json-conflict |
| description | A test skill with BOTH frontmatter mcp-servers AND a companion mcp.json (tests mcp.json precedence) |
| mcp-servers | {"frontmatter-server":{"command":"python","args":["-m","http.server","8080"]}} |
This skill has both mcp-servers in frontmatter and a companion mcp.json file.
The mcp.json companion takes precedence when keys collide.
| Source | Server Name | Command |
|---|---|---|
| Frontmatter | frontmatter-server | python ... |
| mcp.json | mcp-json-server | npx playwright |
| Result | Only mcp-json-server | (full override) |
skill = Skill.from_skill_dir(UPath("skill_with_mcp_json_conflict"))
# mcp_servers contains ONLY mcp.json servers (full override)
assert "mcp-json-server" in skill.mcp_servers
assert "frontmatter-server" not in skill.mcp_servers
Use this skill when testing mcp.json precedence over frontmatter mcp-servers.