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

configure-putior-mcp

pjt222
업데이트됨 6 days ago
12 조회
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 助工作流文
  • 經 ACP 配自動管道之代理間通

  • :putior 已裝(見 install-putior
  • :目標客戶:Claude Code、Claude Desktop、俱
  • :亦配 ACP 服(默:否)
  • :ACP 服自主機/埠(默: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)。 貼 token 於 shell 令或提交至控。

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

加 putior MCP 服於 Claude Code 配。

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

WSL 含 Win 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(Win)

加 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 通,R 物如 putior_theme 不可跨 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 服於已配埠啟。/agents 返 putior 代理清單。/runs 受自然語求且返工作流果。

敗: 8080 埠佔→指他埠。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 路誤:Win 路於 JSON 須轉義(\\)。用 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 埠衝:默 ACP 埠(8080)常用。啟前以 lsof -i :8080netstat -tlnp | grep 8080 察。
  • 僅露特具:以 putior_mcp_tools(include = c("put", "put_diagram")) 建自 MCP 服封。
  • 經 MCP 自調色put_diagrampaletteput_theme() 建之 putior_theme R 物,不可經 MCP JSON 介序。MCP 呼用內 theme 參字串。自調色用 R 直接。

  • install-putior — 前置:putior 與選依須裝
  • configure-mcp-server — 通 MCP 服配於 Claude Code/Desktop
  • troubleshoot-mcp-connection - 具未現→診連問
  • build-custom-mcp-server — 建封 putior 具之自 MCP 服
  • analyze-codebase-workflow — 互式用 MCP 具析碼庫

GitHub 저장소

pjt222/agent-almanac
경로: i18n/wenyan-ultra/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 또는 모바일 환경 전환 시 세션 상태와 컨텍스트를 관리하여 워크플로를 최적화합니다. 다양한 단계에서 서로 다른 도구가 필요한 복잡한 프로젝트에 사용하세요.

스킬 보기