npx claudepluginhub harry-jk/claude-plugin --plugin codex개인용 Claude Code 플러그인 마켓플레이스입니다.
# GitHub에 push 후
/plugin marketplace add harry-jk/claude-plugin
# 또는 로컬에서 테스트
/plugin marketplace add /path/to/claude-plugin
/plugin install <plugin-name>@harry-claude-plugins
claude-plugin/
├── .claude-plugin/
│ └── marketplace.json # 마켓플레이스 메타데이터
├── plugins/
│ ├── _template/ # 플러그인 템플릿
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # 플러그인 메타데이터
│ │ ├── commands/ # 슬래시 명령어
│ │ ├── skills/ # Agent Skills
│ │ ├── agents/ # 커스텀 서브에이전트
│ │ ├── hooks/ # 이벤트 훅
│ │ └── scripts/ # 스크립트 파일
│ └── <your-plugin>/ # 실제 플러그인들
└── README.md
plugins/_template을 복사하여 새 플러그인 디렉토리 생성.claude-plugin/plugin.json 수정.claude-plugin/marketplace.json의 plugins 배열에 추가{
"plugins": [
{
"name": "my-plugin",
"source": "./plugins/my-plugin",
"description": "플러그인 설명",
"version": "1.0.0",
"keywords": ["keyword1", "keyword2"],
"category": "development"
}
]
}
| 컴포넌트 | 위치 | 설명 |
|---|---|---|
| Commands | commands/*.md | /명령어로 실행되는 간단한 명령 |
| Skills | skills/*/SKILL.md | Claude가 자동으로 호출할 수 있는 기능 |
| Agents | agents/*.md | Task 도구로 호출되는 서브에이전트 |
| Hooks | hooks/hooks.json | 도구 실행 전후에 트리거되는 스크립트 |
| MCP | .mcp.json | MCP 서버 설정 |
| LSP | .lsp.json | LSP 서버 설정 |
# 특정 플러그인 테스트
claude --plugin-dir ./plugins/my-plugin
# 여러 플러그인 동시 테스트
claude --plugin-dir ./plugins/plugin1 --plugin-dir ./plugins/plugin2
MCP server development helper with tool and resource scaffolding
Share bugs, ideas, or general feedback.
MCP servers for Codex integration
Comprehensive toolkit with 8 expert skills for Claude Code plugin development covering hooks, MCP integration, commands, and agents with best practices.
Complete toolkit for building Model Context Protocol (MCP) servers in Python using the official SDK with FastMCP. Includes instructions for best practices, a prompt for generating servers, and an expert chat mode for guidance.
Build FastMCP 3.x Python MCP servers — covers provider/transform architecture (including CodeMode, Tool Search, and server-level transforms), component versioning, session state, authorization (MultiAuth, PropelAuth, connection-pooled token verifiers), evaluation creation, Pydantic validation, async patterns, STDIO and HTTP transports, nginx reverse proxy deployment, background tasks, Prefab Apps UI, security patterns, client SDK usage, testing, deployment, and migration from FastMCP v2. TypeScript is a legacy reference only and is not updated for v3.
Skills for designing and building MCP servers that work seamlessly with Claude — guides you through deployment models (remote HTTP, MCPB, local), tool design patterns, auth, and interactive MCP apps.