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 🙏

© 2025 – Pkg Stats / Ryan Hefner

snow-flow

v8.41.20

Published

ServiceNow development with SnowCode - 75+ LLM providers (Claude, GPT, Gemini, Llama, Mistral, DeepSeek, Groq, Ollama) • 395 Optimized Tools • 2 MCP Servers • Multi-agent orchestration • Use ANY AI coding assistant (ML tools moved to Enterprise)

Downloads

21,628

Readme

Snow-Flow

The Free ServiceNow Build Agent Alternative

npm License: Elastic-2.0 GitHub stars

Built by developers, for developers. Snow-Flow is an open-source ServiceNow development platform with 410+ MCP tools. Use any AI model you want - Claude, GPT-4, Gemini, Llama, or run completely free with Ollama.


Get Started in 60 Seconds

# Install
npm install -g snow-flow

# Initialize (creates config files)
snow-flow init

# Authenticate (ServiceNow + optional enterprise services)
snow-flow auth login

# Start building
snow-flow agent "create an incident dashboard widget"

That's it. You're now developing ServiceNow through conversation.


Why Snow-Flow?

vs ServiceNow Build Agent

| | Snow-Flow | ServiceNow Build Agent | |---|---|---| | Price | Free (open source) | $100-200/user/month + Pro Plus license | | AI Model | Any - Claude, GPT-4, Gemini, Llama, Ollama | NowLLM only (locked in) | | Development | Local IDE - VS Code, Cursor, terminal | Browser-based Studio only | | Enterprise Tools | Jira, Azure DevOps, Confluence | ServiceNow ecosystem only | | Open Source | Yes | No |

What You Get

  • 410+ MCP Tools - Complete ServiceNow API coverage
  • Any LLM Provider - Claude, GPT-4, Gemini, Mistral, DeepSeek, Groq, or free local models
  • Local Development - Pull artifacts to local files, edit with your favorite IDE
  • Enterprise Integrations - Jira, Azure DevOps, Confluence (paid tier)
  • ES5 Validation - Catches Rhino engine errors before deployment
  • Update Set Management - Automatic change tracking

How It Works

Snow-Flow uses the Model Context Protocol (MCP) to give AI models direct access to ServiceNow. When you say "create an incident dashboard", the AI:

  1. Creates an Update Set to track changes
  2. Builds the widget (HTML, client script, server script)
  3. Deploys to your ServiceNow instance
  4. Validates ES5 compliance and widget coherence

All through natural conversation.

# Create widgets
snow-flow agent "create incident dashboard with priority charts and SLA timers"

# Build automation
snow-flow agent "create business rule to auto-assign incidents by category"

# Query data
snow-flow agent "show me all P1 incidents from last week"

# Complex workflows
snow-flow agent "analyze incident patterns and create a knowledge article with recommendations"

Configuration

ServiceNow OAuth Setup

  1. In ServiceNow: System OAuth → Application Registry → New
  2. Create OAuth endpoint with:
    • Redirect URL: http://localhost:3005/callback
    • Refresh Token Lifespan: 0 (unlimited)
  3. Copy Client ID and Secret to .env:
SNOW_INSTANCE=your-instance.service-now.com
SNOW_CLIENT_ID=your-client-id
SNOW_CLIENT_SECRET=your-client-secret

LLM Provider

Choose any provider:

# Claude (recommended)
DEFAULT_LLM_PROVIDER=anthropic
ANTHROPIC_API_KEY=sk-ant-...

# Or Claude Pro/Max subscription (no API key needed)
DEFAULT_LLM_PROVIDER=anthropic
ANTHROPIC_API_KEY=
# Then run: snow-flow auth login (opens browser)

# GPT-4
DEFAULT_LLM_PROVIDER=openai
OPENAI_API_KEY=sk-...

# Gemini
DEFAULT_LLM_PROVIDER=google
GOOGLE_API_KEY=...

# 100% Free - Local Ollama
DEFAULT_LLM_PROVIDER=ollama
OLLAMA_BASE_URL=http://localhost:11434
DEFAULT_OLLAMA_MODEL=llama3.3

Enterprise Features

For teams that need external tool integrations:

Jira Integration

  • Sync stories/epics bidirectionally
  • JQL queries from your AI assistant
  • Automatic status updates
  • Full workflow automation

Azure DevOps Integration

  • Work item sync (User Stories, Tasks, Bugs)
  • Pipeline status integration
  • Pull request tracking

Confluence Integration

  • Documentation sync
  • Knowledge article generation
  • Architecture diagram management

Pricing:

  • Individual: $99/month (1 developer)
  • Teams: $79/user/month (3+ users)
  • Enterprise: $49/seat/month (25+ seats, white-label available)

Start at portal.snow-flow.dev


Use With Any AI IDE

Snow-Flow works with any MCP-compatible tool:

| Tool | Setup | |------|-------| | snow-code (recommended) | Built-in, just run snow-flow agent | | Claude Desktop | Copy config to claude_desktop_config.json | | Cursor | Copy config to .cursor/mcp.json | | Windsurf | Copy config to mcp_config.json | | Continue.dev | Copy config to .continue/mcpServers/ |

# After snow-flow init, config is at:
cat .snow-code/config.json

# Copy to your AI tool's MCP config location

Commands

# Core workflow
snow-flow init          # Initialize project
snow-flow auth login    # Authenticate (ServiceNow + enterprise)
snow-flow auth status   # Check authentication status
snow-flow agent "task"  # Execute any ServiceNow task

# Direct commands
snow-flow deploy        # Deploy artifacts
snow-flow status        # System status

Requirements

  • Node.js 18+
  • ServiceNow instance with OAuth configured
  • LLM Provider - Any provider supported by models.dev (Claude, GPT-4, Gemini, Mistral, DeepSeek, Groq, local models, and more)

Links


License

Elastic License 2.0 - Free for commercial use, cannot resell as competing SaaS.


Snow-Flow - The free, open-source ServiceNow Build Agent alternative. Built by developers, for developers.

npm install -g snow-flow && snow-flow init && snow-flow auth login && snow-flow agent "hello servicenow"