Steps to access NetSuite MCP Tools from Cursor or ...
# general
m
Steps to access NetSuite MCP Tools from Cursor or any MCP supported editor or IDE 1. Open Cursor -> Cursor Settings -> MCP & Integrations 2. Then paste the following MCP server setup:
Copy code
{
  "mcpServers": {
    "ns-mcp-tools-remote": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://<ACCOUNT_ID>.suitetalk.api.netsuite.com/services/mcp/v1/all",
        "--header",
        "Authorization: Bearer <AUTH_TOKEN>"
      ]
    }
  }
}
3. When you save the mcp.json file, you should see the following output in MCP List:
Copy code
ns-mcp-tools
13 tools enabled
4. Now ask Cursor: "I want customer email, name, and phone details against id 4180" 5. You should see the output as shown in the attached image. Important Notes: • You need to update Auth Token manually if it expires • At the moment, env variables are not being substituted in the MCP config correctly • I will further investigate and update this issue Tags: ns-mcp-tools, part-5
👍 1