mcp-builder
MCP 서버 구축
또한 다음에서 사용할 수 있습니다: 92Bilal26,YYH211,anthropics,92Bilal26,davila7,ArtemisAI,ZhanlinCui,AutumnsGrove,Azeem-2,Doyajin174,DYAI2025,Cam10001110101,ComposioHQ
이 스킬은 개발자가 mcp-use 프레임워크를 사용하여 도구, 리소스, 프롬프트 및 인터랙티브 위젯이 있는 Model Context Protocol 서버를 생성할 수 있도록 도와줍니다. 참고: 이 스kill은 더 이상 사용되지 않습니다. 대신 mcp-app-builder를 사용하세요.
스킬 ZIP 다운로드
Claude에서 업로드
설정 → 기능 → 스킬 → 스킬 업로드로 이동
토글을 켜고 사용 시작
테스트해 보기
"mcp-builder" 사용 중입니다. Create an MCP tool that translates text between languages
예상 결과:
Server tool definition with translate function calling external API, returning text response using response helper
"mcp-builder" 사용 중입니다. Build a weather widget with city search
예상 결과:
React component with weather-display.tsx, widgetMetadata with props schema, and matching tool configuration
보안 감사
낮은 위험All 442 static findings are false positives. The skill is a legitimate MCP server builder framework (deprecated). Findings appear in documentation/reference files showing code examples. The 'weak crypto' alerts are triggered by `.describe()` method (Zod), 'external commands' by markdown code fences, 'env access' by example config patterns, and 'network' by API call examples. No malicious code detected.
낮은 위험 문제 (4)
위험 요인
품질 점수
만들 수 있는 것
새 MCP 서버 생성
도구, 리소스, 프롬프트가 포함된 새로운 MCP 서버 프로젝트 부트스트랩
도구 및 리소스 추가
tool(), resource(), prompt() 메서드로 서버측 로직 정의
인터랙티브 위젯 구축
시각적 사용자 인터페이스를 위한 widgetMetadata가 있는 React 컴포넌트 생성
이 프롬프트를 사용해 보세요
Create a new MCP server called 'my-server' with a tool that fetches user data by ID. Include proper error handling.
Add a resource to my MCP server that returns configuration data from a config://settings URI.
Create a weather display widget that shows current conditions. The tool should accept city name and display temperature, conditions, and humidity.
I need to build an MCP server for a task management app. Analyze what should be tools vs widgets vs resources. List the specific tools, resources, and prompts needed.
모범 사례
- 명확한 매개변수 문서를 위해 Zod 스키마 필드에 항상 .describe()를 추가하세요
- 시각적 또는 인터랙티브 출력이 사용자 경험을 향상시킬 때 위젯을 사용하세요
- 코드 구현으로 바로 넘어가기 전에 design-and-architecture.md를 참고하세요
피하기
- 먼저 design-and-architecture.md를 읽지 않고 코드부터 시작
- 위젯이 더 나은 UX를 제공할 때 모든 것에 도구 사용
- 스키마 필드에서 .describe() 건너뛰기, 매개변수 불분명하게 만듦