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-8thwall

v1.0.1

Published

n8n nodes for 8th Wall MCP HTTP bridge

Readme

8th Wall MCP — n8n Nodes

Custom n8n nodes to call the 8th Wall MCP HTTP bridge (from this repo).

Overview

  • One flexible node: invoke any MCP tool exposed by the HTTP bridge
  • Router node: converts free-text requests to tool + args items
  • Dynamic tool list loaded from /tools
  • Simple credential: base URL of the bridge (default http://127.0.0.1:8787)

Prerequisites

  • Run the MCP HTTP bridge from this repo in a separate process:
    • Build: npm run build
    • Start: HTTP_PORT=8787 MODE=local PROJECT_ROOT=./project npm run http

Install (as a local community package)

  1. From n8n-nodes-8thwall/ run:
    • npm install
    • npm run build
  2. In n8n, enable community nodes and install from local folder or publish to npm as n8n-nodes-8thwall.

Usage

  • Add credentials: 8th Wall MCP Bridge API

    • Base URL: http://127.0.0.1:8787 (or your host/port)
  • Add node: 8th Wall MCP Tool

    • Tool: pick from the dropdown (loads from /tools)
    • Args (JSON): parameters for the selected tool, e.g.
      • assets_download_url: { "url": "https://example.com/model.glb", "filename": "models/MyModel.glb" }
      • scene_add_gltf_model: { "src": "assets/models/MyModel.glb", "position": [0,1.2,-2], "scale": [0.5,0.5,0.5] }
      • devserver_start: { "port": 5173 }
  • Or use the Router node to drive the MCP node dynamically:

    • Add node: 8th Wall MCP Router
    • Set Request to something like: "Scaffold an A‑Frame project and start the dev server on 5173"
    • Connect Router → 8th Wall MCP
    • In the MCP node, enable "Use Custom Tool Name"
      • Tool Name (Custom): expression {{$json.tool}}
      • Args (JSON): expression {{$json.args}}
    • The Router can emit multiple items (e.g., download then add model) — the MCP node will execute each in order.

Notes

  • The node simply POSTs to /tool/<name> with the JSON body you provide.
  • Response shape mirrors the bridge: { ok, tool, result }. The node outputs result (or the full body on error).
  • To point at an 8th Wall Desktop project, set PROJECT_ROOT when starting the bridge, or use the desktop tools.