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

n8n-nodes-simpro

v0.4.16

Published

SimPRO OpenAPI-based community node for n8n (OAuth2, tags/operations from spec).

Readme

n8n-nodes-simpro

This is an n8n community node that provides integration with the SimPRO API.

n8n is a fair-code licensed workflow automation platform.

Features

This package provides two nodes:

1. SimPRO Node - User-Friendly API Access

A completely redesigned, user-friendly interface for accessing the SimPRO API:

  • Individual parameter fields instead of manual JSON entry
  • Organized parameter collections for path params and query params
  • Common parameters built-in: Search, Pagination, Display options
  • Clean operation dropdown with method badges [GET], [POST], etc.
  • Helpful error messages that tell you exactly where to set parameters
  • Supports all SimPRO API endpoints via OpenAPI spec

2. SimPRO AI Tool - AI Agent Integration

Designed for use with AI agents (OpenAI, Anthropic, etc.):

  • 🤖 Exposes SimPRO operations as tool calls
  • 🎯 Smart operation matching (list vs get specific items)
  • 📊 Detailed logging for debugging
  • 🔍 Automatic resource and operation detection

Installation

Community Nodes (Recommended)

For production use, install via n8n's Community Nodes:

  1. Go to SettingsCommunity Nodes
  2. Click Install
  3. Enter: n8n-nodes-simpro
  4. Click Install

Manual Installation

For development or custom deployment:

npm install n8n-nodes-simpro

Prerequisites

  • n8n installed (version 1.0.0 or higher)
  • SimPRO account with API access
  • SimPRO API Bearer token

Configuration

Setting up Credentials

  1. In n8n, go to CredentialsNew
  2. Search for "SimPRO API"
  3. Enter your SimPRO API Bearer token
  4. Test and save

Getting Your API Token

  1. Log in to your SimPRO instance
  2. Go to SystemSetupAPI (or Security)
  3. Generate or copy your API token
  4. Use the token (with or without "Bearer " prefix)

Usage

SimPRO Node - Basic Examples

Get a Customer

  1. Resource: Customers
  2. Operation: [GET] Retrieve details for a specific customer
  3. Company ID: 0
  4. Additional ParametersCustomer ID: 123

Search Jobs

  1. Resource: Jobs
  2. Operation: [GET] List all jobs
  3. Company ID: 0
  4. Query Parameters:
    • Search: urgent
    • Page Size: 10

Create a Customer

  1. Resource: Customers
  2. Operation: [POST] Create a new customer
  3. Company ID: 0
  4. Request Body:
{
  "GivenName": "John",
  "FamilyName": "Smith",
  "Phone": "555-1234"
}

SimPRO AI Tool - With AI Agents

Connect to an AI Agent node (OpenAI, Anthropic, etc.):

User: "Get details for job number 12345"

AI Tool Call:

{
  "resource": "Jobs",
  "operation": "get",
  "pathParams": {
    "jobID": "12345"
  }
}

See FILTERING_AND_SPECIFIC_ITEMS.md for detailed AI tool usage.

Recent Improvements (v0.4.10+)

The SimPRO node has been completely redesigned for better user experience:

Before vs After

Before (Manual JSON):

Path Params: {"companyID": "0", "customerID": "123"}
Query: {"search": "test", "pageSize": 10}

After (Structured Fields):

Company ID: 0
Additional Parameters → Customer ID: 123
Query Parameters → Search: test
Query Parameters → Page Size: 10

Key Improvements

  • 🎯 Individual fields for common parameters (Customer ID, Job ID, etc.)
  • 📋 Parameter collections organize related options
  • 🏷️ Better operation names: [GET] List all jobs instead of long paths
  • 💡 Helpful errors that show exactly where to set missing parameters
  • 🔧 JSON fallback still available for advanced use cases

See SIMPRO_NODE_IMPROVEMENTS.md for complete details.

Documentation

Development

Build

npm run build

Lint

npm run lint
npm run lintfix  # Auto-fix issues

Local Testing

npm run build
n8n start

The nodes will be available in your local n8n instance.

Resources

Version

Current version: 0.4.10

License

MIT

Support

For issues, questions, or contributions:

  • 🐛 Report bugs via GitHub Issues
  • 💬 Ask questions in n8n Community Forum
  • 🤝 Contributions welcome via Pull Requests