netsuite-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@netsuite-mcpCreate a new customer named Glama Test"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
netsuite-mcp
MCP server exposing NetSuite's REST Record API as tools for Claude Code: create, read, update, delete, and query (SuiteQL) against any NetSuite record type, plus a metadata catalog lookup to discover valid record type names.
Setup
Install dependencies:
npm installComplete the NetSuite-side OAuth 2.0 Client Credentials (M2M) setup:
Enable REST Web Services and OAuth 2.0 features
Create an integration role with the record permissions you need
Create/assign an integration user with that role
Generate a keypair. Must be 4096-bit (or 3072-bit) RSA — NetSuite rejects 2048-bit with "Provided x509 certificate has an invalid bit length" on upload:
openssl genrsa -out secrets/netsuite_private.pem 4096 openssl req -new -x509 -key secrets/netsuite_private.pem -out secrets/netsuite_public.pem -days 730 -subj "/CN=claude-mcp-integration"Create the Integration record (Client Credentials grant) → copy the Client ID
Upload
netsuite_public.pemand map it to the role/user/integration → copy the Certificate ID
Copy
.env.exampleto.envand fill in:NETSUITE_ACCOUNT_ID= NETSUITE_CLIENT_ID= NETSUITE_CERTIFICATE_ID= NETSUITE_PRIVATE_KEY_PATH=./secrets/netsuite_private.pemRegister the server with Claude Code. This project already has a
.mcp.jsonat its root, so running Claude Code from this folder should auto-detect it. Alternatively:claude mcp add netsuite -- node src/server.js
Related MCP server: NetSuite MCP Server
Tools
Tool | Purpose |
| List valid REST record type names |
| Read-only SuiteQL query (find internal ids) |
| Fetch a record by internal id |
| Create a record |
| Partial-patch update a record |
| Delete a record by internal id |
recordType must match NetSuite's REST endpoint naming (e.g. customer, salesOrder, invoice,
item). If unsure, use netsuite_list_record_types or netsuite_query first.
Notes
Access tokens are cached in-memory and refreshed automatically before expiry.
secrets/*.pemand.envare gitignored — never commit them.
Known gaps
netsuite_delete_recordhas no safety net. Unlikenetsuite_create_custom_field(dryRundefault) or the ServiceNow reference server this was modeled on (no delete tool at all, by design), this tool deletes immediately on call — confirmed live (real create → real delete → 404, no residue). Deliberately left as-is for now; flagged rather than fixed. Worth a dry-run/confirmation guard before this is trusted with anything that isn't a throwaway test record.MCP_SERVER_TOKENis implemented but unset. If deployed to Render as-is today, the/mcpendpoint runs open — anyone with the URL gets create/update/delete oncustomrecord_*data.Render deployment hasn't happened yet. Everything below is verified locally only.
Closed: netsuite_update_record (PATCH) was untested as of the last check — now verified live
through the actual HTTP gateway (/mcp, not just the raw client functions): created a
customrecord_mm_project_codes row, PATCHed its name, confirmed the new value stuck on
re-fetch, deleted it, confirmed 404. Same sweep reconfirmed the two known permission blockers
(SuiteQL, standard-entity access) still fail the same way through the gateway as they do
directly — the gap there is account permissions, not this server.
Remote deployment (Render)
src/httpServer.js is a second entry point served over Streamable HTTP instead of stdio, so it
can run as an always-on remote service instead of a local Claude Code subprocess. As of the
multi-tenant HTTP deploy, it registers both the REST data tools (registerTools.js) and the
SDF metadata tools (registerSdfTools.js) — not just data. A fresh McpServer + transport is
created per request, but all of those per-request instances share one process, one sdf/ project
directory, and one suitecloud CLI auth state — see registerSdfTools.js's withSdfLock mutex,
which serializes every SDF tool call end-to-end so concurrent requests can't interleave writes
into each other's project:deploy (deploy.xml is a wildcard — it pushes everything currently
staged, not just what the current request wrote).
Requires the Docker runtime, not Render's native Node runtime — the SDF tools shell out to
the Java-backed suitecloud CLI, and native Node has no system package access to install a JRE.
This repo's Dockerfile installs default-jre-headless before npm ci; verified locally
(docker build + docker run, confirmed Java 17 + suitecloud --version + all 29 tools
reachable through a real /mcp request).
Push this repo to GitHub (
secrets/,.env, andnode_modules/stay out per.gitignoreand.dockerignore).In Render: New → Web Service, connect the GitHub repo, select Docker as the runtime (Render will detect the
Dockerfileautomatically — no Build/Start Command fields needed, those come from the Dockerfile).Set the instance count to 1 and do not enable autoscaling. The
withSdfLockmutex only protects a single process — multiple instances would each have their own independent lock and independentsdf/filesystem, defeating the whole point.Add a Secret File (Environment → Secret Files) for the private key — e.g. mount
netsuite_private_pointfive.pemat/etc/secrets/netsuite_private_pointfive.pem. Never pass key material as a plain environment variable or commit it.Add environment variables (Settings → Environment):
NETSUITE_ACCOUNT_ID,NETSUITE_CONSUMER_KEY,NETSUITE_CONSUMER_SECRET,NETSUITE_TOKEN_ID,NETSUITE_TOKEN_SECRET— REST data tools, same values as local.envNETSUITE_SDF_AUTH_ID,NETSUITE_SDF_CERTIFICATE_ID— SDF metadata tools, same values as local.envNETSUITE_SDF_PRIVATE_KEY_PATH— the Secret File's mount path (e.g./etc/secrets/netsuite_private_pointfive.pem), not a local./secrets/...pathSUITECLOUD_CI=1,SUITECLOUD_CI_PASSKEY— required bysuitecloudCLI v3+ for machine-to-machine auth, same values as local.envMCP_SERVER_TOKEN— no longer optional once SDF tools are exposed; this server now has full metadata deploy capability, so leaving it unset means anyone with the URL can create, modify, or delete NetSuite configuration, not just data. If set, every client must sendAuthorization: Bearer <token>.
Deploy. Render gives you a URL like
https://netsuite-mcp-xxxx.onrender.com. The MCP endpoint ishttps://<that-host>/mcp(POST only — this server is stateless, so GET/DELETE on/mcpreturn 405)./healthzreturns 200 and is safe to hit unauthenticated as a warm-up/keep-alive ping.Point any remote MCP client (e.g. a gateway's "Register MCP server" form) at that
/mcpURL with the Streamable HTTP transport and the bearer token as a static header.
Free-tier caveat: Render's Free instance tier sleeps after ~15 min idle, with a 30-60s
cold start on the next request — the first call after any idle gap will hang/slow until the
instance wakes. Issue a throwaway warm-up call (e.g. hit /healthz) before relying on this
in a live demo, or upgrade to a paid instance if that's not acceptable.
SDF tools (metadata: custom fields, records, scripts, forms, workflow, and more)
The REST Record API tools above can't touch metadata at all — NetSuite doesn't expose object
definitions over REST. src/registerSdfTools.js adds that capability via the SuiteCloud
Development Framework (SDF): for each object type, a builder module in src/sdf/ generates an
XML object definition (or, for scripts/templates, an XML definition plus a companion body file),
which then gets validated/deployed through the suitecloud CLI (@oracle/suitecloud-cli, a
Java-backed tool — requires a local Java runtime).
Coverage is organized in risk-ascending tiers (see the build plan referenced in git history for
the full rationale) — flat structural objects first, scripts and forms in the middle, Workflow
last since it's the most complex/fragile SDF object type. A few object types Oracle's own docs
say to author in the NetSuite UI and import rather than hand-roll (Entry/Transaction/Address
Form, Sublist, Published Dashboard, Workbook, Dataset, KPI Scorecard, Financial Layout, Report
Definition, SSP Application, Saved Search) are covered by netsuite_import_sdf_object instead of
a create tool — notably Saved Search, whose XML definition field is an encoded/compressed blob
that Oracle explicitly says not to hand-edit.
These tools are registered only on the local stdio server (npm run start), not on the
remote HTTP server — they shell out to a CLI and need a private key file on disk, neither of
which belongs in a stateless Render container.
Setup (separate credential set — do not reuse the TBA vars above)
SDF's CI auth uses OAuth 2.0 Client Credentials (M2M certificate). As of NetSuite 2024.2, Token-Based Authentication is no longer accepted for this — it's a hard requirement, not a preference, so the TBA vars used by the REST tools cannot be reused here.
The keypair is already generated at
secrets/netsuite_private.pem/secrets/netsuite_public.pem(seeopensslcommands in the Setup section above if you need to regenerate it).Hand
secrets/netsuite_public.pemto whoever administers the NetSuite account and followNETSUITE_ADMIN_SETUP.mdsteps 4-6 (create the Integration record with Client Credentials grant, upload the certificate, map it to a role/user). That produces a Client ID and a Certificate ID.Fill in
.env:NETSUITE_SDF_AUTH_ID=netsuite-mcp-ci # any alias you like NETSUITE_SDF_CERTIFICATE_ID=<from step 2> NETSUITE_SDF_PRIVATE_KEY_PATH=./secrets/netsuite_private.pemRegister the cert with the local CLI:
npm run sdf:auth(this is also run automatically before everynetsuite_create_custom_fieldcall, so this step is mostly for a manual smoke test).
Tools
Foundation / cross-cutting:
Tool | Purpose |
| Lists everything currently staged in |
| Pulls an existing object's XML down from the account ( |
Data model / security / nav (Tier 1, 1b):
Tool | Purpose |
| Lists field categories ( |
| Entity/Transaction Body/Item/CRM/Transaction Column/Other custom fields |
| Custom Record Type, optionally with nested custom fields (Custom Record Custom Field isn't a separate object) |
| Custom List |
| Custom Segment (requires an existing Custom Record Type) |
| Custom Transaction Type |
| Custom Role |
| Custom navigation Center family |
| Saved CSV Import map (mappings only — no CSV data) |
Content-bearing objects (Tier 2) and forms (Tier 3):
Tool | Purpose |
| Writes a file into the local File Cabinet folder |
| Email Template (metadata XML + |
| Advanced PDF/HTML Template (metadata XML + |
| Translation Collection (inline strings, not XLIFF) |
| Narrow Entry/Transaction/Address Form override (basic layout only — see note above on importing instead) |
Scripts (Tier 4):
Tool | Purpose |
| Lists script types and whether they support |
| Any script type — Client/User Event/Scheduled/Map-Reduce/Suitelet/RESTlet/Portlet/Mass Update/Workflow Action/Bundle Installation/SDF Installation Script, Plug-in Type/Implementation |
| Attaches a new deployment to an already-created script without rewriting it |
Workflow (Tier 6):
Tool | Purpose |
| Workflow (SuiteFlow) from structured states/transitions/actions — only |
Every create/deploy tool defaults to dryRun=true (project:validate — checks against the
account without changing anything). Pass dryRun=false to actually run project:deploy. There
are no delete tools anywhere by design — removing an object is a manual step, the same
deliberate speed bump the ServiceNow build tools use.
Status: live-verified against a real account (PointFive Ltd sandbox, 2026-08-17, three passes).
project:validate has passed cleanly (exit 0) for: Custom Record Type (+ nested custom field),
Custom Transaction Type, Role, Center/Center Tab/Center Category, Saved CSV Import, Custom
Segment (full round trip, including the required record-type association — see below), all six
custom field categories (entity, item, crm, transactionColumn, other, and
transactionBody with caveats — see below), Email Template, Advanced Template, Translation
Collection, File Cabinet, Workflow (including setfieldvalueaction/addbuttonaction actions),
Transaction Form, netsuite_create_script_deployment, netsuite_import_sdf_object (imported
a real live object back down and confirmed the local representation matches byte-for-byte on the
parts that matter), and 8 of 13 script types (Client Script, Suitelet, RESTlet, Scheduled Script,
Map/Reduce Script, Portlet, Mass Update Script, Workflow Action Script, Bundle Installation
Script, SDF Installation Script). netsuite_create_custom_list was additionally verified with a
real dryRun=false deploy — an actual Custom List was created on the live account and confirmed.
Getting here surfaced and fixed real bugs (see git history) — most notably:
manifest.xmlneeds an explicit<dependencies>block naming every account feature any object in the project depends on (CUSTOMRECORDS,CUSTOMSEGMENTS,CUSTOMTRANSACTIONS,SERVERSIDESCRIPTING,WORKFLOW,ADVANCEDPRINTING,CRM,ADVANCEDJOBS) — having the feature enabled on the account isn't enough. Field builders also omitF-valued boolean flags entirely now, since even<colexpense>F</colexpense>demands a manifest declaration for its feature — only declare what you actually use. Some deploys need a further, form/record-type- specific feature too (e.g.SALESORDERSfor a Sales Order transaction form) — the validate error names it, add it tomanifest.xmlas needed rather than expecting it pre-declared.References to objects outside the local project (a Saved Search, an existing Entry Form) must also be declared, under
<dependencies><objects>—src/sdf/manifestDependencies.jshandles this automatically fornetsuite_create_advanced_templateandnetsuite_create_saved_csv_import.Custom Segment needs a RECIPROCAL link, not just a one-way reference — the segment referencing its record type isn't enough; the record type must also carry a
customSegmentScriptId(emits<customsegment>) pointing back. With both sides linked, it's a completely clean validate. Build both together: pick the segment's scriptid first, build the record type withcustomSegmentScriptIdset, then build the segment withrecordTypeScriptIdpointing at it. Also: once a record type is linked this way,recordName/accessType/allowUiAccess/enableNumbering/hierarchical/isInactiveare rejected — NetSuite manages those for a segment's values record, so the builder omits them automatically in that mode.restlet's root tag is lowercase (<restlet>), not<Restlet>as an Oracle doc example showed — that capitalization gets it miscategorized as a generic data file, not a script.Script deployments require a
title— confirmed live, now enforced by the builder.Transaction Form's
standardattribute is an enumerated value, not a guessableSTANDARD<X>FORMpattern — e.g.STANDARDSALESORDERfor Sales Order, notSTANDARDSALESORDERFORM. Guess wrong and NetSuite's own validate error lists every valid value for that record type.editingInListis also rejected outright and was removed from the builder.transactionBodyfield category is less trustworthy than the others —appliestosalesorderhard-errors andappliestoinvoicewarns, both "invalid or not supported";entity/itemvalidated clean. Re-test whichever specific flag you need before relying on it.
Still open / unverified:
Entry Form's
recordTypeis a confirmed, unresolved problem — three different value styles were tried live and all rejected (plain nameCUSTOMER/PROJECTTASK, lowercase, and Form-ID styleSTANDARDCUSTOMERFORM). Transaction Form works fine with plain record type names: this is specific to Entry Form.netsuite_create_formno longer acceptsformType: 'entry'blindly — usenetsuite_import_sdf_objectfor entry forms until this is actually solved.Address Form is explicitly NOT supported by
netsuite_create_form— confirmed live it's a structurally different object (different scriptid prefixcustaddressform_, no recordType/standard/inactive/preferred/storedWithRecord/actionbar/buttons at all, a requiredaddressTemplatefield, and amainFieldsshape using<defaultFieldGroup>directly rather than a scriptid'd<fieldGroup>). Needs dedicated work, not a variant of the shared builder — usenetsuite_import_sdf_objectfor it.Plugin Type / Plugin Implementation need more required fields than this generic script builder supports (
customplugintype,status,deploymentmodel) — confirmed to exist as valid script types, but not fully buildable vianetsuite_create_scriptyet.Root tags for
bundleinstallationscript/sdfinstallationscript/workflowactionscript/massupdatescript/portletvalidated clean this pass but weren't independently fetch-confirmed from docs beforehand (same lowercase-of-type-name pattern as everything else except therestletexception above).The true import-only types (Saved Search, Dashboard, Workbook, KPI Scorecard, Financial Layout, Report Definition, SSP Application) are still untested —
netsuite_import_sdf_objectitself is proven to work, but needs a real existing object of each specific type on the account to test against.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Marketo MCP server for AI. 130 tools to operate Marketo from Claude, Cursor, or ChatGPT.
An MCP server that provides an API to LLMs to manage their JumpCloud resources.
MCP server exposing klokin time-tracking operations (employees, time entries, stores) to AI clients.
Related MCP Servers
- AlicenseBqualityAmaintenanceMCP server for the BoondManager API, enabling Claude to search, create, and modify records across 36 domains with 158 tools.218238818Apache 2.0
- AlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server providing access to NetSuite data through OAuth 2.0 with PKCE authentication. Works seamlessly with any MCP-compatible client including Claude Code, Cursor IDE, and Gemini CLI.27620MIT
- FlicenseNot gradedqualityBmaintenanceMCP server that connects Claude Desktop to an Oracle Fusion Cloud instance. It exposes suppliers, purchase orders, invoices, and project costs as callable tools.
- AlicenseNot gradedqualityBmaintenanceProvides a single MCP endpoint for AI clients to operate NetSuite via a dedicated integration identity, supporting read, write, and action tools with risk policies and audit logging.4,6211MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yanivshoval0104/netsuite-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server