MCP HubMCP Hub
스킬 목록으로 돌아가기

configure-putior-mcp

pjt222
업데이트됨 Yesterday
5 조회
17
2
17
GitHub에서 보기
디자인aimcpautomationdesign

정보

이 스킬은 putior MCP 서버를 구성하여 Claude와 같은 AI 어시스턴트에 16가지 워크플로우 시각화 도구를 제공합니다. Claude Code와 Claude Desktop 설정 방법을 다루며, 필요한 의존성을 설치하고 에이전트 간 통신을 위한 선택적 ACP 서버 구성도 포함합니다. AI 어시스턴트가 워크플로우를 대화형으로 주석 처리하고 시각화하도록 활성화할 때, 또는 putior MCP 통합이 포함된 새로운 개발 환경을 설정할 때 사용하세요.

빠른 설치

Claude Code

추천
기본
npx skills add pjt222/agent-almanac -a claude-code
플러그인 명령대체
/plugin add https://github.com/pjt222/agent-almanac
Git 클론대체
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/configure-putior-mcp

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

配置 putior MCP 伺服器

設 putior MCP 伺服器令 AI 助手(Claude Code、Claude Desktop)可直呼工作流註釋與圖表生成之工具。

適用時機

  • 令 AI 助手互動式註釋並視覺化工作流
  • 設新開發環境含 putior MCP 整合
  • 裝 putior 後欲 AI 輔助工作流文件
  • 為自動化管線配代理間通訊 via ACP

輸入

  • 必要:putior 已裝(見 install-putior
  • 必要:目標客戶端:Claude Code、Claude Desktop、或兩者
  • 選擇性:是否亦配 ACP 伺服器(預設:否)
  • 選擇性:ACP 伺服器之自訂主機/port(預設:localhost:8080)

步驟

步驟一:裝 MCP 依賴

裝 MCP 伺服器功能所需之包。

# Required: MCP framework
remotes::install_github("posit-dev/mcptools")

# Required: Tool definition framework
install.packages("ellmer")

# Verify both load
library(mcptools)
library(ellmer)

預期: 兩包裝且載入無誤。

失敗時: mcptoolsremotes 包。先裝:install.packages("remotes")。GitHub 限速則於 ~/.RenvironGITHUB_PAT(加行 GITHUB_PAT=your_token_here 並重啟 R)。將令牌貼於 shell 命令或提至版本控制。

步驟二:配 Claude Code(WSL/Linux/macOS)

加 putior MCP 伺服器至 Claude Code 之配置。

# One-line setup
claude mcp add putior -- Rscript -e "putior::putior_mcp_server()"

WSL 用 Windows R:

claude mcp add putior -- "/mnt/c/Program Files/R/R-4.5.2/bin/Rscript.exe" -e "putior::putior_mcp_server()"

驗配置:

claude mcp list
claude mcp get putior

預期: putior 見於 MCP 伺服器列,態為「configured」。

失敗時: 若 Claude Code 不於 PATH,加之:export PATH="$HOME/.claude/local/node_modules/.bin:$PATH"。若 Rscript 路徑錯,以 which Rscriptls "/mnt/c/Program Files/R/" 尋 R。

步驟三:配 Claude Desktop(Windows)

加 putior 於 Claude Desktop 之 MCP 配置檔。

%APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "putior": {
      "command": "C:\\PROGRA~1\\R\\R-45~1.0\\bin\\x64\\Rscript.exe",
      "args": ["-e", "putior::putior_mcp_server()"]
    }
  }
}

或以全路徑:

{
  "mcpServers": {
    "putior": {
      "command": "C:\\Program Files\\R\\R-4.5.2\\bin\\x64\\Rscript.exe",
      "args": ["-e", "putior::putior_mcp_server()"]
    }
  }
}

編配置後重啟 Claude Desktop。

預期: Claude Desktop 於其 MCP 伺服器列顯 putior。對話中工具可用。

失敗時: 以 JSON linter 驗語法。查 R 路徑存。若路徑空格致問題,用 8.3 短名(PROGRA~1R-45~1.0)。

步驟四:驗全 16 工具

測所有 MCP 工具可達且可用。

# Get tool definitions
tools <- putior::putior_mcp_tools()
cat(sprintf("Total tools: %d\n", length(tools)))

# List tool names
vapply(tools, function(t) t$name, character(1))

16 工具依類:

核心工作流(5):

  • put — 掃檔尋 PUT 註(支 exclude 參數以正則過濾檔)
  • put_diagram — 生 Mermaid 圖表
  • put_auto — 自代碼自動偵工作流(支 exclude 參數)
  • put_generate — 生註建議(支 exclude 參數)
  • put_merge — 合手動+自動註(支 exclude 參數)

參考/發現(7):

  • get_comment_prefix — 取副檔之註前綴
  • get_supported_extensions — 列支援副檔
  • list_supported_languages — 列支援語言
  • get_detection_patterns — 取自動偵模式
  • get_diagram_themes — 列可用主題
  • putior_guide — AI 助手文件
  • putior_help — 速參之助

工具(3):

  • is_valid_put_annotation — 驗註語法
  • split_file_list — 解檔清單
  • ext_to_language — 副檔至語言名

配置(1):

  • set_putior_log_level — 配記錄詳度

要:自訂調色盤不能經 MCP 用。 put_diagrampalette 參數收 put_theme() 建之 putior_theme R 物件。MCP 以 JSON 通訊,putior_theme 等 R 物件不能跨 MCP 邊界序列化。經 MCP 呼 put_diagram 時改用字串式之 theme 參數(如 theme = "viridis")。自訂調色盤則於 R 會話中直呼 put_theme()put_diagram(palette = ...)

自 Claude Code 測核心工具:

Use the putior_help tool to see available commands
Use the put tool to scan ./R/ for annotations
Use the put_diagram tool to generate a diagram

預期: 全 16 工具列。以有效輸入呼核心工具返預期結果。

失敗時: 若工具缺,查 putior 版本:packageVersion("putior")。舊版或工具更少。以 remotes::install_github("pjt222/putior") 更。

步驟五:配 ACP 伺服器(選擇性)

設 ACP(Agent Communication Protocol)伺服器以代理間通訊。

# Install ACP dependency
install.packages("plumber2")

# Start ACP server (blocks — run in a separate R session or background)
putior::putior_acp_server()

# Custom host/port
putior::putior_acp_server(host = "0.0.0.0", port = 9000)

測 ACP 端點:

# Discover agent
curl http://localhost:8080/agents

# Execute a scan
curl -X POST http://localhost:8080/runs \
  -H "Content-Type: application/json" \
  -d '{"input": [{"role": "user", "parts": [{"content": "scan ./R/"}]}]}'

# Generate diagram
curl -X POST http://localhost:8080/runs \
  -H "Content-Type: application/json" \
  -d '{"input": [{"role": "user", "parts": [{"content": "generate diagram for ./R/"}]}]}'

預期: ACP 伺服器於已配 port 啟。/agents 返 putior 代理清單。/runs 收自然語請求並返工作流結果。

失敗時: 若 port 8080 已用,指不同 port。若 plumber2 未裝,伺服器函數印建議裝之助錯。

驗證

  • putior::putior_mcp_tools() 暴露核心工具(putput_diagramput_autoput_generateput_merge)且返當前版本之約 16 工具
  • Claude Code:claude mcp listputior 已配
  • Claude Code:putior_help 工具呼時返助文
  • Claude Desktop:重啟後 putior 見於 MCP 伺服器列
  • 核心工具(putput_diagramput_auto)行而無誤
  • (選擇性)ACP 伺服器回應 curl http://localhost:8080/agents

常見陷阱

  • mcptools 未裝:MCP 伺服器需 mcptools(自 GitHub)與 ellmer(自 CRAN)。兩者皆須裝。putior 查之並於缺時供助訊
  • Claude Desktop 中 R 路徑誤:JSON 中 Windows 路徑需跳脫(\\)。用 8.3 短名以免空格:C:\\PROGRA~1\\R\\R-45~1.0\\bin\\x64\\Rscript.exe
  • 忘重啟:編配置後 Claude Desktop 須重啟。Claude Code 下次會話啟時取變
  • renv 隔離:若 putior 裝於 renv 庫而 Claude Code/Desktop 啟 R 無 renv,則包不被找到。確 mcptoolsellmer 裝於全域庫或於 MCP 伺服器命令中配 renv 啟用
  • ACP port 衝突:預 ACP port(8080)常用。啟前以 lsof -i :8080netstat -tlnp | grep 8080
  • 僅含特定工具:暴露工具子集時建自訂 MCP 伺服器包裝用 putior_mcp_tools(include = c("put", "put_diagram"))
  • 經 MCP 用自訂調色盤put_diagrampalette 參數需 putior_theme R 物件(由 put_theme() 建),不能跨 MCP 之 JSON 介序列化。MCP 呼用內建 theme 參數字串。自訂調色盤直用 R

相關技能

  • install-putior — 前置:putior 與選擇性依賴須裝
  • configure-mcp-server — Claude Code/Desktop 之通用 MCP 伺服器配置
  • troubleshoot-mcp-connection — 若工具不現則診連接問題
  • build-custom-mcp-server — 建包裝 putior 工具之自訂 MCP 伺服器
  • analyze-codebase-workflow — 互動式用 MCP 工具行代碼庫分析

GitHub 저장소

pjt222/agent-almanac
경로: i18n/wenyan-lite/skills/configure-putior-mcp
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

연관 스킬

executing-plans

디자인

executing-plans 스킬은 검토 체크포인트가 포함된 통제된 배치로 실행할 완전한 구현 계획이 있을 때 사용합니다. 이 스킬은 계획을 불러와 비판적으로 검토한 후, 소규모 배치(기본값 3개 작업)로 작업을 실행하면서 각 배치 사이에 진행 상황을 아키텍트 검토를 위해 보고합니다. 이를 통해 내재된 품질 관리 체크포인트를 갖춘 체계적인 구현이 보장됩니다.

스킬 보기

requesting-code-review

디자인

이 스킬은 코드 변경 사항을 요구 사항에 따라 분석하기 위해 코드 리뷰어 하위 에이전트를 호출합니다. 작업 완료 후, 주요 기능 구현 후, 또는 메인 브랜치에 병합하기 전에 사용해야 합니다. 이 리뷰는 현재 구현체와 원래 계획을 비교하여 문제를 조기에 발견하는 데 도움이 됩니다.

스킬 보기

connect-mcp-server

디자인

이 스킬은 개발자들이 HTTP, stdio 또는 SSE 전송 방식을 통해 MCP 서버를 Claude Code에 연결하는 포괄적인 가이드를 제공합니다. GitHub, Notion 및 사용자 정의 API와 같은 외부 서비스를 통합하기 위한 설치, 구성, 인증 및 보안을 다룹니다. MCP 통합 설정, 외부 도구 구성 또는 Claude의 모델 컨텍스트 프로토콜 작업 시 활용하세요.

스킬 보기

web-cli-teleport

디자인

이 스킬은 작업 분석을 기반으로 개발자가 Claude Code 웹 인터페이스와 CLI 인터페이스 중 선택할 수 있도록 돕고, 두 환경 간 원활한 세션 텔레포트를 가능하게 합니다. 웹, CLI 또는 모바일 환경 전환 시 세션 상태와 컨텍스트를 관리하여 워크플로를 최적화합니다. 다양한 단계에서 서로 다른 도구가 필요한 복잡한 프로젝트에 사용하세요.

스킬 보기