Oracle NetSuite MCP — Auth Setup
This MCP requires OAuth token. Follow your provider's documentation to obtain them.
1. Get your credentials
Visit the Oracle NetSuite MCP documentation or developer dashboard to generate OAuth token. Never paste credentials into our site — add them directly to your shell environment.
2. Set environment variables
macOS / Linux — add to ~/.zshrc or ~/.bashrc:
export NS_ACCOUNT_ID=YOUR_VALUE_HERE
export NS_CONSUMER_KEY=YOUR_VALUE_HERE
export NS_CONSUMER_SECRET=YOUR_VALUE_HERE
export NS_TOKEN_ID=YOUR_VALUE_HERE
export NS_TOKEN_SECRET=YOUR_VALUE_HERE
Windows — run in Command Prompt (then restart your terminal):
setx NS_ACCOUNT_ID "YOUR_VALUE_HERE"
setx NS_CONSUMER_KEY "YOUR_VALUE_HERE"
setx NS_CONSUMER_SECRET "YOUR_VALUE_HERE"
setx NS_TOKEN_ID "YOUR_VALUE_HERE"
setx NS_TOKEN_SECRET "YOUR_VALUE_HERE"
3. Verify
npx claude-skills doctor
You should see ✅ next to the Oracle NetSuite MCP entry.
4. Restart Claude Code
Quit and reopen Claude Code, then run /mcp list to confirm the MCP appears.

