MCP server/ai-tools

MCP Kkebi MCP Server

Build interactive UI applications and React-based widgets for AI models.

mimsut/mcp_kkebi ↗by mimsutupdated
Manual setup required. The maintainer's config contains paths only you know - edit the placeholders below before adding it to Claude Code.
1

Prepare the server locally

Run this once before adding it to Claude Code.

git clone https://github.com/mimsut/mcp_kkebi.git
cd mcp_kkebi
npm install
npm run build
2

Register it in Claude Code

claude mcp add mcp-kkebi -- node /path/to/my-mcp-app/dist/index.js

Replace any placeholder paths in the command with the real path on your machine.

3

Make your agent remember this setup

mcp-kkebi's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.

npx conare@latest

Free · one command · indexes the sessions already on disk. Set up in the browser instead →

What it does

  • React-based interactive UI widgets
  • TypeScript support with hot reload
  • Bidirectional interaction between AI and users
  • Easy deployment via Manufact Cloud
  • Extensible architecture for custom tools and resources

Tools 1

greetDisplays a welcome message to the user.

Environment Variables

API_KEYAPI key for external services
DATABASE_URLDatabase connection string

Try it

Greet the user named 'Alice' using the greet tool.
Show me the example widget.
Open the counter widget to track my progress.
Original README from mimsut/mcp_kkebi

MCP Kkebi 🚀

ChatGPT와 Claude에서 실행되는 인터랙티브 UI 애플리케이션을 구축하는 MCP 앱입니다.

🔗 Repository: github.com/mimsut/mcp_kkebi

✨ 특징

  • 🎨 인터랙티브 위젯: React 기반의 아름다운 UI 컴포넌트
  • 🤖 AI 통합: ChatGPT와 Claude에서 바로 사용 가능
  • ⚡️ 빠른 개발: TypeScript + Hot Reload
  • 📦 쉬운 배포: Manufact Cloud 지원
  • 🔧 확장 가능: 새로운 도구와 위젯 쉽게 추가

🚀 빠른 시작

# Clone
git clone https://github.com/mimsut/mcp_kkebi.git
cd mcp_kkebi

# 설치
npm install

# 개발 모드
npm run dev

# 빌드
npm run build

📦 프로젝트 구조

my-mcp-app/
├── src/
│   └── index.ts              # MCP 서버 진입점 (TypeScript)
├── dist/
│   └── index.js              # 빌드된 서버 (JavaScript)
├── resources/
│   ├── example-widget/       # 예제 위젯
│   │   ├── widget.tsx        # React 컴포넌트
│   │   └── types.ts          # Props 타입
│   └── counter-widget/       # 인터랙티브 카운터 위젯
│       ├── widget.tsx
│       └── types.ts
├── package.json
├── tsconfig.json
├── mcp-config.json           # MCP 설정 파일
└── README.md

🏗️ 아키텍처

  • Server: MCP 도구(tools)와 리소스(resources) 정의 (src/index.ts)
  • Widget: resources/ 폴더의 React 컴포넌트로 클라이언트에서 렌더링
  • Protocol: MCP가 자동으로 통신 처리

🚀 시작하기

1. 의존성 설치

npm install

2. 빌드

npm run build

3. 개발 모드 실행 (핫 리로드)

npm run dev

4. 프로덕션 실행

npm start

🔧 Claude Desktop에 연결하기

macOS

  1. Claude Desktop 설정 파일 열기:
nano ~/Library/Application\ Support/Claude/claude_desktop_config.json
  1. 다음 설정 추가:
{
  "mcpServers": {
    "my-mcp-app": {
      "command": "node",
      "args": [
        "/Users/user/Downloads/b_ru8Xi2QdWzH-1771717682115/my-mcp-app/dist/index.js"
      ]
    }
  }
}
  1. Claude Desktop 재시작

Windows

설정 파일 위치: %APPDATA%\Claude\claude_desktop_config.json

💬 ChatGPT에 연결하기

  1. ChatGPT 설정에서 "Custom Actions" 또는 "GPT" 섹션으로 이동
  2. MCP 서버 추가:
    • 서버 URL: 로컬 또는 배포된 URL
    • 프로토콜: MCP (Model Context Protocol)

🎨 위젯 사용하기

Example Widget

환영 메시지와 기본 정보를 표시하는 간단한 위젯입니다.

사용법:

widget://example

특징:

  • 그라디언트 배경
  • 환영 메시지
  • 상태 표시

Counter Widget

사용자 상호작용을 보여주는 인터랙티브 카운터 위젯입니다.

사용법:

widget://counter

특징:

  • 증가/감소 버튼
  • 초기화 기능
  • 실시간 상태 업데이트
  • 부드러운 애니메이션

🛠️ 도구 (Tools)

greet

사용자에게 환영 메시지를 표시합니다.

파라미터:

  • name (string, 필수): 사용자 이름

예제:

{
  "name": "홍길동"
}

응답:

안녕하세요, 홍길동님! MCP 앱에 오신 것을 환영합니다! 🎉

🧪 테스트하기

로컬 테스트

# 개발 모드로 실행
npm run dev

# 다른 터미널에서 MCP Inspector 사용
npx @modelcontextprotocol/inspector node dist/index.js

Inspector에서 확인

MCP Inspector를 사용하면 다음을 할 수 있습니다:

  • 모든 도구와 리소스 목록 확인
  • 테스트 입력으로 도구 호출
  • 위젯 미리보기 라이브로 확인
  • 코드 변경 시 즉시 핫 리로드

📝 새로운 위젯 추가하기

  1. resources/ 폴더에 새 디렉토리 생성:
mkdir resources/my-widget
  1. types.ts 파일 생성:
export interface MyWidgetProps {
  // props 정의
}
  1. widget.tsx 파일 생성:
import React from "react";
import type { MyWidgetProps } from "./types";

export default function MyWidget(props: MyWidgetProps) {
  return {/* 위젯 UI */};
}
  1. src/index.ts에 리소스 핸들러 추가:
server.setRequestHandler(ReadResourceRequestSchema, async (request) => {
  // ...
  if (uri === "widget://my-widget") {
    return {
      contents: [{
        uri: "widget://my-widget",
        mimeType: "application/vnd.mcp.widget+json",
        text: JSON.stringify({
          type: "my-widget",
          props: { /* props */ },
        }),
      }],
    };
  }
  // ...
});

🌐 배포하기

Manufact Cloud에 배포

  1. manufact.com 접속
  2. GitHub 리포지토리 연결
  3. main 브랜치에 push → 자동 배포

또는 CLI 사용:

npx @mcp-use/cli deploy

환경 변수 설정

프로덕션 환경에서 필요한 환경 변수가 있다면 .env 파일 생성:

# .env
API_KEY=your_api_key
DATABASE_URL=your_database_url

🎯 평가 기준 (해커톤)

프로젝트는 다음 기준으로 평가됩니다:

1. 독창성 (30점) 🌟

  • 새로운 개념의 창의성
  • "이런 것도 MCP 앱으로 만들 수 있구나!" 하는 놀라움

2. 실용성 (30점) 💡

  • 실제 문제 해결 또는 워크플로우 개선
  • 사용자에게 실질적인 가치 제공

3. 위젯-모델 상호작용 (20점) 🔄

  • useCallTool(), sendFollowUpMessage() 등 양방향 통신 활용
  • state(), setState() 활용
  • 위젯과 AI 모델 간의 효과적인 상호작용

4. UI/UX (10점) 🎨

  • 세련되고 직관적인 경험
  • 반응형 디자인
  • 접근성

5. 프로덕션 준비 (10점) 🚀

  • OAuth 인증
  • 온보딩 플로우
  • 에러 처리
  • 사용자 설정 관리

📚 추가 리소스

🤝 기여하기

이슈나 PR은 언제나 환영합니다!

📄 라이센스

MIT License


🎉 빠른 시작 요약

# 1. 의존성 설치
npm install

# 2. 빌드
npm run build

# 3. Claude Desktop에 연결
# ~/Library/

Frequently Asked Questions

What are the key features of MCP Kkebi?

React-based interactive UI widgets. TypeScript support with hot reload. Bidirectional interaction between AI and users. Easy deployment via Manufact Cloud. Extensible architecture for custom tools and resources.

What can I use MCP Kkebi for?

Creating interactive dashboards for AI data analysis. Building custom UI components for specific AI workflows. Developing stateful widgets like counters or forms for Claude. Rapid prototyping of AI-integrated web interfaces.

How do I install MCP Kkebi?

Install MCP Kkebi by running: git clone https://github.com/mimsut/mcp_kkebi.git && cd mcp_kkebi && npm install && npm run build

What MCP clients work with MCP Kkebi?

MCP Kkebi works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Conare · memory for coding agents

Turn this server into reusable context

Keep MCP Kkebi docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Set up free$npx conare@latest