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

@interweave-technologies/mcp-server

v0.1.0

Published

MCP server for InterWeave SmartIntegration — lets AI agents manage integrations, flows, and QuickBooks data

Downloads

66

Readme

@interweave/mcp-server

Model Context Protocol (MCP) server for InterWeave SmartIntegration. Lets AI assistants (Claude Code, Cursor, Windsurf, and any MCP-compatible tool) manage integration flows, monitor system health, query QuickBooks Online data, and more — directly from a chat conversation.


Quick Start

Claude Code

Add to .claude/settings.json in your project root or ~/.claude/settings.json globally:

{
  "mcpServers": {
    "interweave": {
      "command": "npx",
      "args": ["@interweave/mcp-server"],
      "env": {
        "IW_BASE_URL": "https://interweave-ide.dev/iw-business-daemon",
        "IW_USER": "[email protected]",
        "IW_PASS": "your-password"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "interweave": {
      "command": "npx",
      "args": ["@interweave/mcp-server"],
      "env": {
        "IW_BASE_URL": "https://interweave-ide.dev/iw-business-daemon"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "interweave": {
      "command": "npx",
      "args": ["@interweave/mcp-server"],
      "env": {
        "IW_BASE_URL": "https://interweave-ide.dev/iw-business-daemon"
      }
    }
  }
}

Configuration

| Environment variable | Required | Default | Description | |----------------------|----------|--------------------------------------------|----------------------------------------------------| | IW_BASE_URL | No | http://localhost:9090/iw-business-daemon | Base URL of the iw-business-daemon | | IW_USER | No | — | Email for authentication (use interweave_login if omitted) | | IW_PASS | No | — | Password for authentication (use interweave_login if omitted) |

If IW_USER and IW_PASS are not set, call the interweave_login tool first to authenticate. The token is then cached for the duration of the server process.


Available Tools

| Tool | Description | Auth required | |-----------------------------------|--------------------------------------------------------------------|---------------| | interweave_login | Authenticate and cache a Bearer token | No | | interweave_get_health | System health: uptime, DB, memory, webapp status | No | | interweave_list_flows | List all flows with state, schedule, and counters | Yes | | interweave_start_flow | Start a flow by index (admin) | Yes (admin) | | interweave_stop_flow | Stop a flow by index (admin) | Yes (admin) | | interweave_get_dashboard | Real-time transaction summary, running jobs, recent activity | Yes | | interweave_get_connection_health| Per-system connection status with live OAuth/endpoint checks | Yes | | interweave_get_metrics | Time-series metrics (executions, duration, records, payload) | Yes | | interweave_qbo_query | Read or write QuickBooks Online data via proxy | Yes | | interweave_passthrough | Invoke a raw engine MCP tool (sync, validate, reconcile, export) | Yes | | interweave_create_auth_flow | Initialize engine profile / re-create flows for current user | Yes (admin) |

Example prompts

"Check if InterWeave is healthy"
"List all my integration flows and show which ones are running"
"Start flow number 2"
"Show me the dashboard — how many transactions failed in the last 24 hours?"
"Query the QuickBooks Customer entity"
"Get connection health for all systems"
"Show me hourly metrics for the last 7 days"

Local Development

# Build from source
cd C:/IW_Launcher/mcp-server
npm run build

# Run directly
node dist/index.js

Point the command in your MCP config to node and args to ["C:/IW_Launcher/mcp-server/dist/index.js"] when testing locally.


Protocol

  • Transport: stdio (newline-delimited JSON-RPC 2.0)
  • Protocol version: 2024-11-05
  • Capabilities: { tools: {} }
  • All errors are returned as MCP tool content with isError: true so clients surface them cleanly

License

MIT — Copyright InterWeave SmartIntegration