Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ—„οΈ Databases
  3. DBConvert Streams (Federated SQL)
D
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 2:01:36 PM

DBConvert Streams (Federated SQL)

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository24 GitHub StarsTotal stargazers on GitHub for the source repository (24 stars).Visit Website

Read-only SQL across your PostgreSQL, MySQL, S3 buckets and local data files, in one query.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Remote HTTP
Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "dbconvert-streams-federated-sql": {
      "url": "https://streams.dbconvert.com/install"
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Tool Schemas (27) Directory Badge Claim listing AlternativesπŸ—„οΈ More in Databases

Capabilities & Tool Schemas (27) ~302 tokensApproximate context cost of this server’s tool schemas (~4 chars/token), before any tool is called. Actual usage depends on your client and model.Self-reported Self-reportedParsed from the repository README, not verified against a live server β€” may be incomplete or out of date.

Inspect callable tools, capabilities, and parameters exposed to AI agents by DBConvert Streams (Federated SQL).

dbconvert_list_connections

list workspace connections

dbconvert_get_connection

inspect one connection

dbconvert_list_databases

list databases

dbconvert_list_schemas

list schemas

dbconvert_list_tables

list tables

dbconvert_list_views

list views

Documentation Overview

DBConvert Streams logo DBConvert Streams

Database IDE + migration + real-time CDC β€” in one workflow.

Query data,
move it,
keep it in sync,
and let your AI assistant see it all

without switching between tools.

If this looks useful, consider giving it a ⭐


Why this exists

Most setups look like this:

  • a DB client for queries
  • scripts or tools for migration
  • a separate CDC pipeline

It works, but it's fragmented.

DBConvert Streams combines these into one workspace.


What it feels like

Think of it as:

DBeaver / DataGrip

  • migration tool
  • CDC

but without switching tools every time


Example

Run queries across databases and files:

Dockerfile
SELECT *
FROM read_parquet('orders.parquet') o
JOIN postgres.public.customers c
  ON o.customer_id = c.id
LIMIT 10;

Then use the same query as a data source β€” and stream it anywhere.


What you can do

  • explore databases, files, and S3
  • run SQL across multiple sources
  • move data between systems
  • keep it in sync with CDC
  • connect Claude, Cursor, or Copilot β€” the AI reads your live schemas, data, and streams (read-only, via MCP)

All in the same workflow.

Note: This is the public home of DBConvert Streams β€” example configurations, documentation, issue tracking, and release notes. The product itself is proprietary.

Quick Start

Runs anywhere β€” your laptop, a VPS, or your own infra. No cloud dependency, no vendor lock-in.

Desktop App

Download for Windows, macOS, or Linux β€” no account required.

AI client extension

Grab dbconvert-streams-<version>.mcpb from Releases and drop it into Claude β†’ Settings β†’ Extensions. It asks for connection strings and folders, and nothing else has to be installed β€” no DBConvert Streams, no toolchain, no server to run.

Code
postgres://user:password@host:5432/dbname
mysql://user:password@host:3306/dbname
s3://bucket/folder?region=us-east-1

Several sources go in the one field, separated by spaces β€” shop=postgres://… orders=mysql://… β€” and a single question can join across all of them.

Add folders of Parquet, CSV or JSON files with the folder picker. Every source becomes read-only tools in your chat, and one question can span several of them at once.

One file covers Windows and Linux β€” the bundle carries a binary for each and picks the right one. macOS is planned for a later release.

Not a Claude user? The same server runs as a container, and every MCP client that can launch one can use it:

Terminal
docker run -i --rm slotix/stream-mcp "shop=postgres://user:password@host:5432/shop"

Cursor and VS Code can set that up in one click β€” Add to Cursor Β· Add to VS Code β€” VS Code asks for the connection string as you install it; in Cursor you replace the sample one. Folders, S3 keys and the rest: standalone server.

The bundled server is proprietary software, distributed under the DBConvert Streams licence. The MIT licence in this repository covers the examples, docs and assets here, not that binary.

Self-Hosted (Docker)

Deploy on any machine with Docker β€” a local server, a VPS (DigitalOcean, Hetzner, AWS EC2, etc.), or your own infrastructure:

Terminal
curl -fsSL https://dbconvert.nyc3.digitaloceanspaces.com/downloads/streams/latest/docker-install.sh | sh

What is DBConvert Streams?

DBConvert Streams is a database IDE with built-in migration and real-time CDC.

Browse databases, local files, and S3 storage. Edit data directly. Run federated SQL queries that join tables across different database engines β€” no intermediate exports needed.

Key Features

In practice, it comes down to this:

Database IDE & Workspace (Free)

  • Data Explorer β€” Browse databases, files, and S3 in one place
  • ER Diagrams β€” Visualize database relationships
  • Schema Comparison β€” Compare schemas and data across databases
  • Schema Navigation β€” Persistent state and search across connections

Federated SQL

  • Execute SQL queries across multiple databases and file sources simultaneously
  • Join live PostgreSQL and MySQL tables using connection aliases
  • Query CSV, JSON, Parquet files and S3 storage alongside databases

Built-in AI Chat β€” new in 2.5.0

Ask about the database work already open in the desktop app: a table, view, file, SQL console, connection, or migration/CDC stream. AI Chat starts with that live workspace context, so it can inspect schemas and data, explain or repair a failed query, and diagnose stream status without asking you to paste DDL into a separate chat.

Use your own installed agent CLI β€” Claude Code, Codex, GitHub Copilot CLI, or OpenCode. AI Chat automatically supplies the relevant scoped subset of DBConvert's read-only tools and shows tool activity while it works; it cannot change connections, configuration, streams, or data.

Docs: AI Chat β†’

AI Assistants via MCP β€” new in 2.4

  • Built-in MCP server: Claude, Cursor, VS Code Copilot, Windsurf, Gemini CLI, and Codex read live schemas, data, and stream state β€” no more pasting DDL into chat
  • 27 read-only tools: inspect workspace connections, schemas, tables and views; run read-only SQL and federated queries; compare schemas and samples; diagnose streams; browse files and S3
  • One-click setup from the ✨ AI Assistants panel; Docker deployments expose /mcp over HTTP(S)
  • Read-only by design: only SELECT passes the server-side filter β€” the AI can look and advise, never write

Docs: AI Assistants via MCP β†’

Tools

DBConvert Streams exposes these 27 read-only MCP tools. The names below match the live MCP server.

Connections and schema

  • dbconvert_list_connections β€” list workspace connections
  • dbconvert_get_connection β€” inspect one connection
  • dbconvert_list_databases β€” list databases
  • dbconvert_list_schemas β€” list schemas
  • dbconvert_list_tables β€” list tables
  • dbconvert_list_views β€” list views

Table and view inspection

  • dbconvert_describe_table β€” inspect table columns and keys
  • dbconvert_preview_table β€” preview table rows
  • dbconvert_describe_view β€” inspect a view
  • dbconvert_preview_view β€” preview view rows

Read-only SQL

  • dbconvert_run_select β€” run a SELECT query
  • dbconvert_explain_select β€” explain a SELECT query

Schema and data comparison

  • dbconvert_compare_schemas β€” compare schemas
  • dbconvert_compare_data_sample β€” compare data samples

Stream diagnostics

  • dbconvert_list_streams β€” list streams
  • dbconvert_get_stream β€” inspect a stream
  • dbconvert_get_stream_status β€” get stream status
  • dbconvert_get_stream_stats β€” get stream throughput and statistics
  • dbconvert_get_stream_recent_errors β€” inspect recent stream errors
  • dbconvert_get_stream_recent_logs β€” inspect recent stream logs

Files and S3

  • dbconvert_list_files β€” list workspace files
  • dbconvert_get_file_schema β€” inspect a file schema
  • dbconvert_preview_file β€” preview file rows
  • dbconvert_list_s3_buckets β€” list S3 buckets
  • dbconvert_list_s3_objects β€” list S3 objects

Federated SQL

  • dbconvert_run_federated_select β€” run a read-only query across sources
  • dbconvert_explain_federated_select β€” explain a federated SELECT query

Only read-only operations are exposed: the server-side filter permits SELECT, so an AI client cannot alter connections, configuration, streams, or data. For client setup, see the MCP setup guide.

Data Migration (Load Mode)

Rapidly move large datasets between databases with automatic schema conversion and validation.

Performance: 23 million rows (4.38 GB) migrated from MySQL to Parquet in 35.7 seconds at 136 MB/s.

Real-time CDC (Change Data Capture)

Stream INSERT, UPDATE, and DELETE operations from source to target in real-time with minimal latency. Supports CDC to databases, files, and S3 storage.

When this is probably not for you

  • you need 100+ connectors (SaaS, APIs, etc.)
  • you already run Kafka pipelines at scale
  • you need complex ETL / transformations

Screenshots

Data Explorer

Browse schemas, view and edit data across multiple database connections with a unified tree navigation:

DBConvert Streams Data Explorer

Federated SQL

Join tables across MySQL, PostgreSQL, and file sources (CSV, Parquet) in a single query:

DBConvert Streams Federated SQL

ER Diagrams

Visualize database relationships with interactive entity-relationship diagrams:

DBConvert Streams ER Diagram

Stream Configuration

Configure data migration and CDC streams with table selection, custom queries, and transfer settings:

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Databases View all alternatives
  • Mysql MCP Server logoMysql MCP Server

    MySQL database integration with configurable access controls, schema inspection, and comprehensive security guidelines

    πŸ—„οΈ Databases3 views
    Compare vs Mysql MCP Server β†’
  • Genai Toolbox logoGenai Toolbox

    Open source MCP server specializing in easy, fast, and secure tools for Databases.

    πŸ—„οΈ Databases5 views
    Compare vs Genai Toolbox β†’
  • Legion MCP logoLegion MCP

    Universal database MCP server supporting multiple database types including PostgreSQL, Redshift, CockroachDB, MySQL, RDS MySQL, Microsoft SQL Server, BigQuery, Oracle DB, and SQLite.

    πŸ—„οΈ Databases5 views
    Compare vs Legion MCP β†’
  • MCP Server Mysql logoMCP Server Mysql

    MySQL database integration in NodeJS with configurable access controls and schema inspection

    πŸ—„οΈ Databases3 views
    Compare vs MCP Server Mysql β†’

Adoption & maintenance

Factual signals from GitHub, npm, and our automated checks β€” not a rating.

GitHub stars
24
Stargazers on the source repository.
Last commit
1d ago
Most recent push to the default branch.
Tools exposed
27
Callable tools this server registers over MCP.

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about DBConvert Streams (Federated SQL)

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "dbconvert-streams-federated-sql": { "command": "npx", "args": ["-y", "DBConvert Streams (Federated SQL)"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewDBConvert Streams (Federated SQL) AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/dbconvert-streams-federated-sql?style=directory)](https://allmcps.com/mcp/dbconvert-streams-federated-sql)
HTML Embed
<a href="https://allmcps.com/mcp/dbconvert-streams-federated-sql"><img src="https://allmcps.com/api/badge/dbconvert-streams-federated-sql?style=directory" alt="DBConvert Streams (Federated SQL) on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ—„οΈDatabases
More technical detailsExpand β–Ύ
TransportSSE (Remote)
RuntimeNode.js
Last updatedSep 5, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars24
GitHub Star CountTotal stargazers on GitHub representing community popularity (24 stars).
Last commit1d ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Sep 5, 2026
56Quality signal: Good Β· 56/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools25/30
Adoption & activity7/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 10,000+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ—„οΈ Databases β†’Best MCP servers for Databases β†’Alternatives to DBConvert Streams (Federated SQL) β†’Install in Claude DesktopInstall in CursorInstall in VS Code