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

flutter_mcp_forwarding_server

v0.1.2

Published

WebSocket forwarding server for Flutter tools communication

Downloads

7

Readme

Forwarding Server

This package is a part of the Flutter MCP.

A WebSocket forwarding server that enables bi-directional communication between Flutter applications and TypeScript clients.

Overview

This package provides a standalone WebSocket server that can:

  • Accept connections from both Flutter and TypeScript clients
  • Forward messages between different client types
  • Prevent message loops by tracking forwarded messages
  • Emit events for client connections/disconnections

Installation

npm install

Usage

Starting the Server

# Start with default settings (port 8143, path /forward)
npm start

# Start with custom port
npm start -- --port 9000

# Start with custom WebSocket path
npm start -- --path /ws

# Show help
npm start -- --help

Environment Variables

You can also configure the server using environment variables:

  • FORWARDING_SERVER_PORT: Port to run the server on (default: 8143)
  • FORWARDING_SERVER_PATH: WebSocket path (default: /forward)

Connecting Clients

Connect to the WebSocket server with the appropriate client type:

ws://localhost:8143/forward?clientType=flutter    # For Flutter clients
ws://localhost:8143/forward?clientType=inspector  # For TypeScript/Inspector clients

Development

# Install dependencies
npm install

# Build the project
npm run build

# Run in development mode (with auto-reload)
npm run dev

# Lint the project
npm run lint

API

The server works by accepting WebSocket connections and forwarding messages between client types.

Client Types

  • flutter: For connections from Flutter applications
  • inspector: For connections from TypeScript/Inspector applications

Message Forwarding

All messages received from one client type are forwarded to all connected clients of the other type.

The server handles JSON-RPC 2.0 formatted messages, tracking message IDs to prevent circular forwarding.

Architecture

+----------------+                  +-------------------+
|                |                  |                   |
| Flutter Client +<---------------->+ Forwarding Server |
|                |                  |                   |
+----------------+                  |                   |
                                    |                   |
+----------------+                  |                   |
|                |                  |                   |
| Inspector Client +<--------------->+                   |
|                |                  |                   |
+----------------+                  +-------------------+