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

hfsql-n8n-mcp-server

v0.2.0

Published

MCP server for HFSQL database integration with n8n for data migration

Readme

HFSQL to n8n MCP Server

A Model Context Protocol (MCP) server that enables communication between HFSQL databases (used in WinDev) and n8n workflow automation platform.

Features

  • Connect to HFSQL databases via ODBC
  • List tables in HFSQL databases
  • Describe table structures
  • Query data from HFSQL tables
  • Migrate data to n8n workflows
  • Export query results to JSON

Installation

# Install globally
npm install -g hfsql-n8n-mcp-server

# Or use with npx
npx hfsql-n8n-mcp-server

Prerequisites

  • Node.js 14 or higher
  • ODBC drivers for HFSQL installed on your system
  • n8n instance (if using migration features)

Usage

As an MCP Server for Claude

  1. Install the package globally:

    npm install -g hfsql-n8n-mcp-server
  2. Add the server to your Claude MCP configuration:

{
  "mcpServers": {
    "hfsql-n8n": {
      "command": "hfsql-n8n-mcp",
      "args": [],
      "env": {}
    }
  }
}
  1. Restart Claude to load the MCP server

Available Tools

The MCP server provides the following tools:

connect_hfsql

Connect to an HFSQL database using an ODBC connection string.

{
  "name": "Connection Name",
  "connectionString": "DSN=MyHFSQLDatabase;UID=username;PWD=password"
}

disconnect_hfsql

Disconnect from a previously connected HFSQL database.

{
  "connectionId": "conn_1234567890"
}

list_tables

List all tables in a connected HFSQL database.

{
  "connectionId": "conn_1234567890"
}

describe_table

Get the structure of a table in a connected HFSQL database.

{
  "connectionId": "conn_1234567890",
  "tableName": "Customers"
}

query_table

Execute a SQL query on a connected HFSQL database.

{
  "connectionId": "conn_1234567890",
  "query": "SELECT * FROM Customers WHERE Country = 'France'",
  "limit": 100
}

migrate_to_n8n

Send query results to an n8n webhook for further processing.

{
  "queryId": "query_1234567890",
  "n8nUrl": "https://n8n.example.com/webhook/123456",
  "n8nApiKey": "optional-api-key"
}

export_to_json

Export query results as JSON.

{
  "queryId": "query_1234567890"
}

Example Workflow

  1. Connect to an HFSQL database
  2. List available tables
  3. Describe a table structure
  4. Query data from the table
  5. Migrate the data to n8n for further processing

License

MIT