Puppetteer not showing as an available tool after adding code to mcp.json

Hi there,

I have been trying to set up MCPs in Cursor. I managed to successfully add Sequential thinking (now visible in the available MCPs in settings), but even after adding the code for puppetteer, it does not show as an available tool. I tried restarting Cursor and changing the code (provided below). Can anybody share any tip as to how to solve this issue?

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    },
    "puppeteer": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-puppeteer"
      ]
    }
  }
}

Hey, which version of Cursor are you using? Also, please let me know your OS. And I hope you have Node.js installed on your system as well? Everything is working for me.

Hi there, thank you so much for helping.

I am on Windows OS x64. Node.js installed (sequential thinking already available via npx command). I have installed puppeteer globally via terminal (code below). Still not showing as an available MCP though…

`-- @modelcontextprotocol/[email protected]

Any ideas on how to fix this issue?

Thanks in advance