eagle mcp使用claude設定筆記


在設定eagle mcp時碰到了一些問題在官方說明中沒有的,把它紀錄下來。

基本步驟請參照官方連結,這邊只寫出自己碰到的問題
https://tw.eagle.cool/support/article/eagle-mcp-server

先附上claude的下載連結,使用mcp需要使用桌面板,但是免費帳號也能夠使用
https://claude.ai/onboarding

第一個碰到的問題是Filesystem的資料夾要設定在哪邊說明沒有講
這個是要設定讓他能使用mcp的檔案位置,所以設定在eagle安裝位置就好
預設eagle位置如下
C:/Users/使用者名稱/AppData/Roaming/Eagle

第二個碰到的問題是claude config設定檔案中沒有mcpServers
長的類似這樣子

{
  "preferences": {
    "coworkWebSearchEnabled": true,
    "coworkScheduledTasksEnabled": false,
    "ccdScheduledTasksEnabled": false,
    "sidebarMode": "chat"
  }
}

在這個情況只要自己把mcpServers設定加進去就好
變成類似下方這樣

{
  "preferences": {
    "coworkWebSearchEnabled": true,
    "coworkScheduledTasksEnabled": false,
    "ccdScheduledTasksEnabled": false,
    "sidebarMode": "chat"
  },
  "mcpServers": 這邊貼上eagle mcp中複製出來的碼
}

第三個問題是重新啟動後出現了錯誤訊息

MCP eagle-mcp: spawn node ENOENT
MCP eagle-mcp: Server disconnected. For troubleshooting guidance, please visit our debugging documentation

並且看到eagle-mcp的設定沒有出現在底下的web search內
查詢後發現需要安裝Nodejs才能夠運作
https://nodejs.org/zh-tw/download
安裝完後重新啟動claude就好

Tags : eagle