Gasio MCP Server

Gasio MCP Server

가시오 툴즈의 14종 이미지/미디어 처리 기능을 로컬 오프라인에서 AI 에이전트가 사용할 수 있게 해주는 MCP 서버입니다. 배경 제거, 화질 개선, OCR, QR 코드 생성, CSS 생성 등을 지원합니다.

Category
Visit Server

README

@gasio/mcp-server

100% 로컬 오프라인 AI 미디어 처리 MCP 서버

npm version License: MIT Node.js Version

Gasio Tools 생태계의 14종 이미지/미디어 처리 기능을 Claude Desktop 등 MCP 지원 AI 에이전트에서 100% 로컬 오프라인으로 사용할 수 있는 Model Context Protocol 서버입니다.

파일이 외부 서버에 절대 업로드되지 않습니다. 모든 연산은 사용자의 컴퓨터 내부에서만 처리됩니다.


🛠️ 제공 도구 (14종)

🎨 이미지 AI 처리 (Season 2)

도구 이름 설명
gasio_remove_background 인물/개체 배경을 AI로 제거 → 투명 PNG 저장
gasio_object_eraser 마스크 이미지 기반으로 특정 개체를 자연스럽게 지우기 (OpenCV Inpainting)
gasio_image_upscaler 저화질 이미지를 RealESRGAN AI 모델로 2~4배 고화질 업스케일
gasio_image_resizer 이미지 크기 조정 (resize / cover / contain 모드, 비율 자동 유지)
gasio_image_converter PNG ↔ JPEG ↔ WEBP ↔ BMP ↔ GIF 포맷 변환
gasio_favicon_generator 고해상도 이미지로 웹 표준 파비콘 세트 (ICO, PNG, WebManifest, ZIP) 생성
gasio_exif_cleaner JPEG EXIF/GPS 메타데이터 삭제 및 SEO용 메타데이터 주입

🎬 미디어 변환 & 편집 (Season 1)

도구 이름 설명
gasio_png_to_svg PNG/JPG 비트맵 이미지를 SVG 벡터 파일로 변환
gasio_video_to_gif MP4/MOV 동영상에서 지정 구간을 GIF 애니메이션으로 변환
gasio_audio_cut MP3/WAV/M4A 오디오 구간 편집 + 페이드인/페이드아웃
gasio_screenshot_mockup 스크린샷을 iPhone/MacBook/Browser 목업 프레임에 합성
gasio_image_to_text_ocr 이미지에서 텍스트 추출 (한국어/영어 OCR)
gasio_qrcode_generator 텍스트/URL로 QR 코드 PNG 생성 (중앙 로고 합성 지원)
gasio_css_generator Glassmorphism / Mesh Gradient CSS 코드 즉시 생성

📦 설치 및 셋업

1단계: 글로벌 설치

npm install -g @gasio/mcp-server

또는 npx로 바로 실행:

npx @gasio/mcp-server

2단계: AI 모델 자동 다운로드 (최초 1회)

OCR, 배경 제거, 화질 개선 도구는 AI 모델 파일이 필요합니다.

npx gasio-mcp-setup

이 명령은 다음 리소스를 ~/.gasio/ 디렉토리에 자동으로 다운로드합니다:

  • ~/.gasio/tesseract/eng.traineddata — Tesseract 영어 모델
  • ~/.gasio/tesseract/kor.traineddata — Tesseract 한국어 모델
  • ~/.gasio/models/realesrgan-x4.onnx — RealESRGAN 업스케일 모델 (~67MB)
  • ~/.gasio/models/super-resolution.onnx — Super Resolution 모델

⚙️ Claude Desktop 연동 설정

claude_desktop_config.json 파일에 다음을 추가하세요:

macOS 경로: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows 경로: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "gasio": {
      "command": "npx",
      "args": ["-y", "@gasio/mcp-server"]
    }
  }
}

글로벌 설치 후 직접 node 실행을 원하는 경우:

{
  "mcpServers": {
    "gasio": {
      "command": "node",
      "args": ["/절대경로/node_modules/@gasio/mcp-server/dist/src/index.js"]
    }
  }
}

📋 도구별 사용 예시

배경 제거

이미지 /Users/me/photo.jpg 에서 배경을 제거해서 /Users/me/output/photo-bg-removed.png 로 저장해줘

→ Claude가 gasio_remove_background 도구를 자동 호출

OCR 텍스트 추출

/Users/me/screenshot.png 이미지에서 한국어 텍스트를 추출해줘

→ Claude가 gasio_image_to_text_ocr 도구를 lang: "kor" 옵션으로 호출

QR 코드 생성

https://tools.gasio.com URL로 QR 코드를 만들어서 /Users/me/qr.png 에 저장해줘

→ Claude가 gasio_qrcode_generator 도구를 자동 호출

파비콘 세트 생성

/Users/me/logo.png 로 파비콘 세트를 /Users/me/favicon-output/ 에 만들어줘

→ Claude가 gasio_favicon_generator 도구로 favicon.ico, apple-touch-icon.png, site.webmanifest 등을 일괄 생성


🔧 도구별 상세 파라미터

<details> <summary><b>gasio_remove_background</b> - 배경 제거</summary>

파라미터 타입 필수 기본값 설명
input_path string - 원본 이미지의 로컬 절대 경로
output_path string - 저장할 투명 PNG 경로
model_preset "small" | "medium" | "large" "medium" AI 모델 크기

</details>

<details> <summary><b>gasio_object_eraser</b> - 개체 지우기</summary>

파라미터 타입 필수 기본값 설명
input_path string - 원본 이미지 경로
mask_path string - 지울 영역이 표시된 마스크 이미지 경로
output_path string - 결과 저장 경로
radius number (1~50) 3 인페인팅 확산 반경
method "telea" | "ns" "telea" 인페인팅 알고리즘

</details>

<details> <summary><b>gasio_image_upscaler</b> - 화질 개선</summary>

파라미터 타입 필수 기본값 설명
input_path string - 원본 이미지 경로
output_path string - 결과 저장 경로
scale 2 | 4 4 업스케일 배율
model_type "realesrgan" | "super-resolution" "realesrgan" AI 모델 유형

ONNX 모델이 없거나 로드 실패 시 Jimp BICUBIC 보간으로 자동 Fallback합니다.

</details>

<details> <summary><b>gasio_image_resizer</b> - 이미지 리사이즈</summary>

파라미터 타입 필수 기본값 설명
input_path string - 원본 이미지 경로
output_path string - 결과 저장 경로
width number - 가로 픽셀 (생략 시 높이 비례 자동)
height number - 세로 픽셀 (생략 시 너비 비례 자동)
mode "resize" | "cover" | "contain" "resize" 스케일링 모드

</details>

<details> <summary><b>gasio_image_converter</b> - 포맷 변환</summary>

파라미터 타입 필수 기본값 설명
input_path string - 원본 이미지 경로
output_path string - 결과 저장 경로 (확장자로 포맷 결정)
quality number (1~100) 80 저장 품질 (JPEG/WEBP 전용)

지원 포맷: .png, .jpg, .jpeg, .webp, .gif, .bmp

</details>

<details> <summary><b>gasio_favicon_generator</b> - 파비콘 생성</summary>

파라미터 타입 필수 기본값 설명
input_path string - 원본 고해상도 이미지 경로
output_dir string - 파비콘 파일들을 저장할 디렉토리
zip_output_path string - ZIP 패키지로 저장할 경로 (선택)
app_name string "App" webmanifest의 앱 이름

생성 파일: favicon.ico, favicon-16x16.png, favicon-32x32.png, favicon-48x48.png, apple-touch-icon.png, android-chrome-192x192.png, android-chrome-512x512.png, site.webmanifest

</details>

<details> <summary><b>gasio_exif_cleaner</b> - EXIF 메타데이터 제거</summary>

파라미터 타입 필수 기본값 설명
input_path string - 원본 이미지 경로
output_path string - 결과 저장 경로
remove_all boolean true 모든 EXIF/GPS 데이터 삭제 여부
seo_metadata.description string - 이미지 설명 (JPEG 전용)
seo_metadata.artist string - 작가 정보 (JPEG 전용)
seo_metadata.copyright string - 저작권 정보 (JPEG 전용)

</details>

<details> <summary><b>gasio_png_to_svg</b> - SVG 변환</summary>

파라미터 타입 필수 기본값 설명
input_path string - 원본 PNG/JPG 경로
output_path string - 저장할 SVG 경로
color_mode "monochrome" | "color" "monochrome" 색상 모드
threshold number (0~255) 128 이진화 임계값

</details>

<details> <summary><b>gasio_video_to_gif</b> - GIF 변환</summary>

파라미터 타입 필수 기본값 설명
input_path string - 동영상 경로 (MP4/MOV)
output_path string - 저장할 GIF 경로
start_time number - 시작 지점 (초)
duration number - 길이 (초)
fps number (1~30) 10 프레임 레이트
width number (100~1920) 480 가로 픽셀

</details>

<details> <summary><b>gasio_audio_cut</b> - 오디오 편집</summary>

파라미터 타입 필수 기본값 설명
input_path string - 오디오 경로 (MP3/WAV/M4A)
output_path string - 저장할 경로
start_ms number - 시작 지점 (밀리초)
end_ms number - 종료 지점 (밀리초)
fade_in boolean false 페이드인 효과
fade_out boolean false 페이드아웃 효과

</details>

<details> <summary><b>gasio_screenshot_mockup</b> - 스크린샷 목업</summary>

파라미터 타입 필수 기본값 설명
input_path string - 스크린샷 경로
output_path string - 저장할 경로
device_type "iphone" | "macbook" | "browser" | "none" - 디바이스 프레임
bg_type "gradient" | "solid" | "transparent" "gradient" 배경 유형
bg_color string "purple-blue" 배경 색상 또는 프리셋 (purple-blue, pink-orange, green-teal)
padding number (0~200) 40 여백 픽셀

</details>

<details> <summary><b>gasio_image_to_text_ocr</b> - OCR 텍스트 추출</summary>

파라미터 타입 필수 기본값 설명
input_path string - 이미지 경로
lang "eng" | "kor" | "kor+eng" "eng" OCR 언어

npm run setup (또는 npx gasio-mcp-setup) 실행 후 사용 가능합니다.

</details>

<details> <summary><b>gasio_qrcode_generator</b> - QR 코드 생성</summary>

파라미터 타입 필수 기본값 설명
text string - 인코딩할 텍스트/URL
output_path string - 저장할 PNG 경로
logo_path string - 중앙에 합성할 로고 이미지 경로
color_dark string "#000000" QR 도트 색상
color_light string "#ffffff" QR 배경 색상

</details>

<details> <summary><b>gasio_css_generator</b> - CSS 코드 생성</summary>

파라미터 타입 필수 기본값 설명
style_type "glassmorphism" | "mesh_gradient" - CSS 스타일 유형
glass_blur number (0~100) 20 글래스모피즘 흐림 강도
glass_opacity number (0~1) 0.1 글래스모피즘 불투명도
mesh_colors string[] 내장 팔레트 Mesh Gradient 색상 배열 (Hex)

파일 저장 없이 CSS 코드와 HTML 스니펫을 텍스트로 즉시 반환합니다.

</details>


🔒 보안 정책

  • Path Traversal 차단: 모든 입력 경로는 홈 디렉토리 또는 시스템 임시 폴더 내로만 제한됩니다. ../ 참조는 즉시 차단됩니다.
  • stdout 보호: MCP 프로토콜의 JSON-RPC 통신 채널(stdout)에 로그를 출력하지 않으며, 모든 로그는 stderr로만 전송됩니다.
  • 네트워크 격리: 모든 처리는 사용자의 로컬 머신에서만 수행되며, 어떠한 파일도 외부 서버로 전송되지 않습니다.

🛠️ 개발자용: 로컬 빌드

git clone https://github.com/kimhoecheon-cmd/gasio-tools-site.git
cd gasio-tools-site/gasio-mcp-server
npm install
npm run build    # TypeScript 컴파일
npm run setup    # AI 모델 다운로드
npm start        # 서버 시작 (stdio 대기)

🌐 관련 서비스

서비스 URL
Gasio Tools 허브 tools.gasio.com
배경 제거 removebg.gasio.com
개체 지우기 eraserimg.gasio.com
화질 개선 upscale.gasio.com
PNG → SVG png2svg.gasio.com
Video → GIF video2gif.gasio.com
스크린샷 목업 screenshot.gasio.com

📄 라이선스

MIT License © Gasio Tools

gasiotools-mcp

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured