mesper
09/08/2025, 1:04 PMNetSuite Ninja
09/08/2025, 5:47 PMsudo nano /etc/mcp-server/config.json
Step 2: Modify User Permissions
Current configuration:
json
{
"users": {
"user_a@company.com": {
"allowed_tools": [
"netsuite-records",
"netsuite-reports"
]
},
"user_b@company.com": {
"allowed_tools": [
"netsuite-search"
]
}
}
}
Example: Give User B access to reports tool:
json
{
"users": {
"user_a@company.com": {
"allowed_tools": [
"netsuite-records",
"netsuite-reports"
]
},
"user_b@company.com": {
"allowed_tools": [
"netsuite-search",
"netsuite-reports"
]
}
}
}
Step 3: Save and Restart Service
bash
# Save file (Ctrl+X, Y, Enter in nano)
# Restart MCP server
sudo systemctl restart mcp-server
# or
sudo service mcp-server restart
ericbirdsall
09/08/2025, 8:07 PMconfig.json
file "lives"?
Is that in NetSuite somewhere?michoel
09/08/2025, 9:02 PMmichoel
09/08/2025, 9:03 PMericbirdsall
09/08/2025, 9:05 PMNetSuite Ninja
09/08/2025, 9:41 PM