other
Netsuite MCP, CLI, and Lua Integration for AI Agents
Netsuite integration docs for AI agents: MCP gateway setup, Netsuite CLI commands, Lua API reference, credentials, and function schemas.
7 functions 6 read 1 write Manual OAuth token auth
Netsuite for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
netsuite- route_slug
netsuite- package
netsuite- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Netsuite CLIHeadless setup and direct function calls. Netsuite MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Netsuite MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Netsuite.
Claude Code Netsuite MCP setup for Claude Code. Cursor Netsuite MCP setup for Cursor. Codex Netsuite MCP setup for Codex. OpenAI Agents Netsuite MCP setup for OpenAI Agents SDK. Claude Agent SDK Netsuite MCP setup for Claude Agent SDK. Vercel AI SDK Netsuite MCP setup for Vercel AI SDK. LangChain Netsuite MCP setup for LangChain. LangGraph Netsuite MCP setup for LangGraph. CrewAI Netsuite MCP setup for CrewAI. MCP clients Netsuite MCP setup for Generic MCP Clients.
Netsuite CLI Matrix
Use these pages for direct Netsuite CLI workflows in scripts, CI, cron, and agent wrappers.
CI Netsuite CLI for CI. Cron Jobs Netsuite CLI for cron jobs. Shell Scripts Netsuite CLI for shell scripts. Headless Automation Netsuite CLI for headless automation. Coding Agents Netsuite CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
netsuite.netsuite_list_customers | Read read | 2 | List customers from NetSuite ERP. Returns customer records with names, IDs, and basic details. Use limit and offset for pagination. |
netsuite.netsuite_get_customer | Read read | 1 | Get detailed information for a single NetSuite customer by internal ID. Returns full customer record including contact details, addresses, and financial information. |
netsuite.netsuite_create_customer | Write write | 10 | Create a new customer in NetSuite ERP. Provide at minimum the company name or first/last name. Additional fields like email, phone, subsidiary, and address can be included. |
netsuite.netsuite_list_invoices | Read read | 2 | List invoices from NetSuite ERP. Returns invoice records with amounts, statuses, customer references, and dates. Use limit and offset for pagination. |
netsuite.netsuite_list_sales_orders | Read read | 2 | List sales orders from NetSuite ERP. Returns sales order records with order details, line items, customer references, and statuses. Use limit and offset for pagination. |
netsuite.netsuite_list_items | Read read | 2 | List items (products and services) from NetSuite ERP. Returns item records with names, IDs, types, and pricing. Use limit and offset for pagination. |
netsuite.netsuite_get_current_user | Read read | 0 | Get the profile of the currently authenticated NetSuite user. Returns user details like name, email, role, and subsidiary. |