0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

CursorのMCP ServersでMCP configuration errorsが出力される

Posted at

事象

Cursor > Preferences > Cursor Settingsから、MCPのタブを表示すると以下のようなエラーが出てしまっていた。

スクリーンショット 2025-04-24 1.57.47.png

原因

MCPサーバーの設定が無いと表示されるようで、プロジェクトの設定とglobalの設定でとりあえず何かMCPサーバーを登録したり、空の設定ファイルを置くことで回避できました。

globalの方に空設定ファイルを置く方法

右上の+ Add new global MCP serverを押下し、以下を貼り付け

mcp.json
{
  "mcpServers": {}
}

プロジェクトの方に空設定ファイルを置く方法

.cursor/mcp.jsonというファイルを作成し、以下を貼り付け

mcp.json
{
  "mcpServers": {}
}

これで回避することができました!
もちろん、globalとprojectそれぞれにMCPサーバーを登録しても解決できます。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?