Skip to content
1 min read 177 words

Install MCP Servers in Claude Desktop and Cursor

Step-by-step Model Context Protocol setup for Claude Desktop and Cursor: config JSON, npx servers, env vars, and safe filesystem scopes.

WorkFlowAI editorial · Trust

#mcp #claude #cursor #agents

Model Context Protocol (MCP) lets Claude Desktop, Cursor, and other clients talk to tools (files, DBs, APIs) through a standard config. Here is a practical install path.

Abstract AI network for Model Context Protocol MCP servers

MCP standardizes how agents discover and call tools across clients.

Claude Desktop config

Configs live in a JSON file (path varies by OS):

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/Users/you/Projects"
      ]
    }
  }
}

Restart Claude Desktop after edits.

Cursor

Cursor uses its own MCP settings UI / JSON. Prefer absolute paths to node/npx if the GUI cannot see your nvm install.

Terminal setup for installing MCP servers in Cursor

GUI apps often miss shell PATH entries—use full binary paths when needed.

Safety first

  • Scope filesystem servers to project folders, not $HOME.
  • Prefer read-only tools while learning.
  • Never commit API keys; use env blocks in the client config.

About the publisher

WorkFlowAI is an open catalog of AI automation workflows, MCP servers, and tools. Guides are written to help operators install and evaluate recipes — with honest Verified vs Community labels.

Related reading

Use this in the library

← All posts