KosmoKrator

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_token Manual OAuth token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Netsuite MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Netsuite.

Netsuite CLI Matrix

Use these pages for direct Netsuite CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
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.