Back to Discover

mq-bridge-app

connector

marcomq

Move data between 15+ databases, queues and files at high throughput, without it entering context

View on GitHub
0 starsSynced Aug 2, 2026

Install to Claude Code

/plugin marketplace add marcomq/mq-bridge-app

README

mq-bridge-app

Linux Windows macOS License Docs

mq-bridge-app

crossing streams

mq-bridge-app is a fast, single-command ETL and data-movement tool built in Rust β€” and, on top of the same engine, a multi-protocol bridge and traffic workbench for messaging.

It ships in three forms that share one engine and one config format: a desktop app (visual workbench), a CLI / server (headless bridge and one-line copy), and a library (embed the engine in Rust, Python, or Node.js). Design a route once, run it anywhere β€” no rewrite in between.

Supported integration types include Kafka, RabbitMQ (AMQP), NATS, AWS SQS, MQTT, IBM MQ (optional), HTTP, gRPC, ZeroMQ, MongoDB, sqlx (MySQL, MariaDB, PostgreSQL), and filesystem endpoints.

πŸ“– All documentation lives in the documentation book β€” installation, quick start, tutorials, cookbook, connector reference, CLI, MCP, and performance tuning. This README is only a short overview; the book is the single source of truth.

A quick taste

At its core is a zero-config copy command that moves data between databases, queues, and files in a single line of bash β€” no YAML, no pipeline definition, no code:

mq-bridge-app copy \
  --from 'postgres://user:pass@localhost/db?table=src&sslmode=disable' \
  --to   'file://out.jsonl?format=raw' \
  --drain

The scheme selects the endpoint and query parameters configure it, so any sourceβ†’sink pair (Postgres, MySQL, MariaDB, SQLite, NATS, Redis, MongoDB, files, …) is just one URL each. And it's quick.

β†’ Quick start Β· Connectors Β· Performance tuning

The three ways to run it

Test connections and dial in a route in the Postman-inspired UI, export the JSON/YAML, then run that config as a service or from library code. One engine, one config format.

FormWhat it isQuick install
Desktop app (UI)The visual workbench β€” build/test routes, run request/response traffic, inspect message historybrew install --cask marcomq/tap/mq-bridge
CLI / serverHeadless binary: a one-line copy, a drain-then-exit batch job, or a long-lived bridge (also serves the same UI in a browser)brew install marcomq/tap/mq-bridge-app
LibraryThe engine embedded in your own code β€” native Rust, Python, or Node.js bindingscargo add / pip / npm

mq-bridge UI - publishers

Learn each form in the book: the three ways to run it Β· the desktop / web UI Β· CLI commands Β· MCP server Β· library bindings.

Install

brew is the quickest path on macOS and Linux:

brew install marcomq/tap/mq-bridge-app         # CLI / server
brew install --cask marcomq/tap/mq-bridge      # desktop app

On Windows, install the CLI with cargo binstall mq-bridge-app, or download the desktop installer / CLI from the Releases page. Also available via cargo install mq-bridge-app (from source) and the Docker image ghcr.io/marcomq/mq-bridge-app:latest.

β†’ Every install method and platform (including the IBM MQ build and Docker) is in the Install guide; to compile from source see Building.

Use it from an AI agent

The same binary is an MCP server, so an agent can move data without the rows passing through its context:

mq-bridge-app mcp install          # register with Claude Code / Claude Desktop / Cursor
  • MCP Registry name: mcp-name: io.github.marcomq/mq-bridge-app

β†’ Tools, transports, and the token-cost measurement: MCP server.

Features

  • Multi-protocol bridging β€” Kafka, IBM MQ, NATS, AMQP (RabbitMQ), MQTT, AWS SQS, gRPC, ZeroMQ, MongoDB, sqlx (MySQL/MariaDB/PostgreSQL), HTTP, and files. Act as an HTTP server and client, with full request-response support.
  • Middleware chains β€” retries, dead-letter queues, deduplication, rate limiting, buffering, transforms, weak-join correlation, and more, wrapping any endpoint.
  • Built-in web UI β€” Svelte-based management for publishers, consumers, routes, runtime status, presets, and imports; the same UI the CLI serves in a browser.
  • Observability β€” structured JSON logging and a Prometheus metrics endpoint.
  • Flexible configuration β€” hierarchical files (YAML/JSON/TOML) plus environment variables, suited to Container/Kubernetes.
  • Security & storage β€” config security modes (plain / extracted secrets / encrypted config / persistent encrypted history), encryption at rest, and local-first operation.
  • High performance β€” Rust + Tokio: low latency, high concurrency, small memory footprint.

Why not just an API client?

mq-bridge-app's UI overlaps with API clients like Postman, Bruno, Insomnia, and Hoppscotch, but its center of gravity is different: message bridging, runtime operation, and long-lived route management rather than just request composition. Exact feature sets vary by product and edition; this captures the difference in emphasis.

Capabilitymq-bridgePostmanBrunoInsomniaHoppscotch
Basic HTTP/API requestsβœ“βœ“βœ“βœ“βœ“
Scriptingβ€”βœ“βœ“βœ“βœ“
Cookie jarNot yetβœ“βœ“βœ“~
Multipart formsβ€”βœ“βœ“βœ“βœ“
Hex-level payload debuggingβœ“β€”β€”β€”β€”
Broker pub/sub workflowβœ“MQTTβ€”β€”MQTT
Long-lived consumers/routesβœ“β€”β€”β€”β€”
Bridge traffic between protocolsβœ“β€”β€”β€”β€”
Replay messagesβœ“~β€”β€”~
Local-first workspaceβœ“~βœ“βœ“~
Git-friendly configβœ“~βœ“βœ“~
Cloud sync by defaultβ€”βœ“β€”OptionalOptional
AI / agent featuresβ€”βœ“β€”~~
Encrypted configβœ“~~~~

Use Postman/Bruno when your main job is crafting and sharing API requests; use mq-bridge-app when you need to connect systems, move messages between protocols, inspect live traffic, and manage bridge-style runtime configuration.

Performance

A CSV β†’ JSONL conversion hit 1,133,786 rows/s; the same job through an MCP tool call ran at 1,176,489 rows/s while costing an agent a flat ~381 tokens regardless of row count, because the rows never enter the model's context.

β†’ Full numbers, methodology, and knobs: Performance tuning and benches/etl/README.md.

How it's built

mq-bridge-app uses the mq-bridge engine on itself β€” the management UI is served through the engine's own HTTP-request/response routing, and the UI form is generated from the Rust config schema (no hand-written form code). See How the app is built.

Status

Active development. Originally the reference implementation and testbed for the mq-bridge engine. The UI/Tauri layer is a working demo rather than a reference implementation β€” test before relying on it in production.

License

MIT β€” see LICENSE.

Rendered live from marcomq/mq-bridge-app's GitHub README β€” not stored, always reflects the source repo.

2 Install Methods

NameDescriptionCategorySource
oci packageInstall via oci (stdio transport)mcp-serverghcr.io/marcomq/mq-bridge-app:0.2.12
cargo packageInstall via cargo (stdio transport)mcp-servermq-bridge-app

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet β€” be the first to share an update.