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

@liemle3893/n8n-mcp-server

v0.1.13

Published

Model Context Protocol (MCP) server for n8n workflow automation

Downloads

4

Readme

n8n MCP Server

A Model Context Protocol (MCP) server for n8n workflow automation.

Installation

From GitHub Package Registry

# Configure npm to use GitHub Package Registry for this scope
echo "@liemle3893:registry=https://npm.pkg.github.com" >> ~/.npmrc

# For public packages, you may need to authenticate with GitHub
# Create a GitHub Personal Access Token with 'read:packages' scope
# Then configure authentication:
echo "//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN" >> ~/.npmrc

# Install the package
npm install -g @liemle3893/n8n-mcp-server

Note: If the package is public, authentication may not be required. Try without the auth token first.

From Source

# Clone the repository
git clone https://github.com/liemle3893/n8n-mcp-server.git
cd n8n-mcp-server

# Install dependencies and build
npm install
npm run build

# Install globally (optional)
npm link

Claude Desktop Extension (DXT)

Download the appropriate .dxt file for your platform from the latest release:

  • macOS Intel: n8n-mcp-server-darwin-x64.dxt
  • macOS Apple Silicon: n8n-mcp-server-darwin-arm64.dxt
  • Linux x64: n8n-mcp-server-linux-x64.dxt
  • Linux ARM64: n8n-mcp-server-linux-arm64.dxt
  • Windows x64: n8n-mcp-server-win32-x64.dxt
  • Windows ARM64: n8n-mcp-server-win32-arm64.dxt

Then drag the .dxt file into Claude Desktop.

Configuration

For npm package usage:

Create a .env file or set environment variables:

N8N_BASE_URL=http://localhost:5678
N8N_API_KEY=your_api_key_here

For Claude Desktop DXT:

Configure the extension settings in Claude Desktop with your n8n instance URL and API key.

Build

# Install dependencies
npm install

# Build TypeScript
npm run build

# Build DXT package
./build-dxt.sh

Tools

Workflow Management

  • list_workflows - List all workflows with filtering options
  • get_workflow - Get workflow details and structure
  • create_workflow - Create new workflows
  • update_workflow - Modify existing workflows
  • delete_workflow - Remove workflows
  • activate_workflow - Enable workflows
  • deactivate_workflow - Disable workflows

Execution Management

  • list_executions - View execution history
  • get_execution - Get execution details and logs
  • delete_execution - Remove execution records
  • run_webhook - Trigger webhook workflows

Node Management

  • list_nodes - List workflow nodes
  • get_node - Get node configuration
  • update_node - Modify node settings
  • add_node - Insert new nodes
  • remove_node - Delete nodes
  • update_node_connections - Manage node connections

Analysis & AI Tools

  • validate_workflow - Check workflow integrity
  • get_workflow_stats - Performance statistics
  • workflow_thinking - AI workflow analysis
  • workflow_planning - AI workflow design
  • workflow_research - AI best practices research
  • workflow_brainstorm - AI creative solutions
  • workflow_optimize - AI performance optimization

System

  • health_check - Check n8n connectivity

Total: 25 tools