KosmoKrator

data

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.

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.

Agent Surfaces

Machine-Readable Metadata

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.