0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

VSCodeとSerena MCPを連動する

Posted at

はじめに

表題通り、VSCodeとSerena MCPを連動します。

Serenaの設定

Serenaのインストール

~  (develop)$ uvx --from git+https://github.com/oraios/serena \
                                                      serena start-mcp-server --context ide-assistant

image.png

SerenaをMCPサーバーでコールする

image.png

image.png

スクリーンショット 2025-08-05 9.27.58.png

スクリーンショット 2025-08-05 9.28.37.png

設定時のコマンド
uvx --from git+https://github.com/oraios/serena serena start-mcp-server --context ide-assistant --project .

確認した事

	    "serena": {
	      "type": "stdio",
    	  "command": "uvx",
      	  "args": [
        	"--from", "git+https://github.com/oraios/serena",
        	"serena",              //  余計なバックスラッシュは無し
        	"start-mcp-server",
        	"--context", "ide-assistant",
        	"--project", "."
    	],
      	"autoStart": true        // VSCode 起動時に自動スタート
  		}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?