npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cafeasp/netsuite-mcp

v0.1.0

Published

NetSuite MCP server for AI-assisted NetSuite workflows

Downloads

117

Readme

@cafeasp/netsuite-mcp

A read-only MCP (Model Context Protocol) server for NetSuite. Gives AI assistants like Claude the ability to query and browse your NetSuite data.

Installation

npm install -g @cafeasp/netsuite-mcp

Setup with Claude Code

claude mcp add netsuite-mcp -e NETSUITE_ACCOUNT_ID=YOUR_ID -e NETSUITE_CONSUMER_KEY=YOUR_KEY -e NETSUITE_CONSUMER_SECRET=YOUR_SECRET -e NETSUITE_TOKEN_ID=YOUR_TOKEN -e NETSUITE_TOKEN_SECRET=YOUR_SECRET -e NETSUITE_AUTH_METHOD=tba -- netsuite-mcp

Verify it's connected:

claude mcp list

Tools

netsuite_query

Execute a SuiteQL query against NetSuite.

Input: { sql: string, limit?: number, offset?: number }

Example prompts:

  • "Show me the first 10 customers"
  • "Find all sales orders from this month"
  • "Count how many active items we have"

netsuite_get_record

Fetch a NetSuite record by type and internal ID.

Input: { recordType: string, id: string, fields?: string[] }

Example prompts:

  • "Look up customer 1234"
  • "Show me the details of sales order 5678"

netsuite_list_records

List NetSuite records of a given type.

Input: { recordType: string, limit?: number, offset?: number, q?: string }

Example prompts:

  • "List the first 20 vendors"
  • "Show me all items"

netsuite_list_record_types

List common NetSuite record types with descriptions.

Example prompts:

  • "What record types are available in NetSuite?"

netsuite_describe_record

Get field metadata for a NetSuite record type.

Input: { recordType: string }

Example prompts:

  • "What fields does the customer record have?"
  • "Describe the salesorder record type"

Configuration

The server loads config from environment variables or ~/.netsuite/config.json. Environment variables take precedence.

Required Environment Variables

NETSUITE_ACCOUNT_ID     — NetSuite account ID (e.g., 1234567_SB1)
NETSUITE_CONSUMER_KEY   — OAuth consumer key
NETSUITE_CONSUMER_SECRET — OAuth consumer secret
NETSUITE_TOKEN_ID       — TBA token ID
NETSUITE_TOKEN_SECRET   — TBA token secret

Compatibility

Works with any MCP-compatible AI client:

  • Claude Code (CLI, Desktop, Web)
  • Claude Desktop
  • Cursor
  • Windsurf
  • Cline
  • Continue
  • Zed
  • Any custom MCP client

Security

This server is read-only — it cannot create, update, or delete records. Write operations may be added in a future version with explicit confirmation mechanisms.

Related Packages

License

MIT