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

@neurelo/connect-mcp

v0.0.2-16

Published

Neurelo Connect MCP server

Readme

Neurelo Connect MCP Server

npm version License Build

Model Context Protocol (MCP) is a new, standardized protocol for managing context between large language models (LLMs) and external systems. In this repository, we provide an MCP Server for Neurelo Connect.

This lets you use Claude Desktop, or any MCP Client, to use natural language to accomplish things with your databases, e.g.:

- "Show me the schema for my PostgreSQL database"
- "How many users do I have?"
- "Tell me how my databases are related to each other"

Claude Setup

Manual Setup

  1. Open the Claude Desktop configuration file located at:

    • On macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • On Windows: %APPDATA%/Claude/claude_desktop_config.json
  2. Add the following:

{
  "mcpServers": {
    "neurelo-connect": {
      "command": "npx",
      "args": ["@neurelo/connect-mcp@latest", "start"],
      "env": {
        "ENGINE_API_KEY": "YOUR_ENGINE_API_KEY",
        "ENGINE_BASE_PATH": "YOUR_ENGINE_BASE_PATH"
      }
    }
  }
}

Requirements

  • Node.js >= v18.0.0
  • Claude Desktop
  • A running Neurelo Connect instance
  • Neurelo Connect API key - you can generate one through the Neurelo Connect console.

Features

Supported Tools

  • system_list_databases - List all the available targets
  • system_get_database_status - Check if all database targets are running
  • system_get_database_schema - Get the schema for a given database target
    • Input:
      • target (string): The name of the target database
  • raw_readonly_query - Execute read-only SQL queries on your database
    • Queries are run with readonly access
    • Input:
      • target (string): The target database name
      • query (string): The SQL query to execute
  • raw_query - Execute read/write SQL queries on your database
    • Queries are allowed to modify data
    • Input:
      • target (string): The target database name
      • query (string): The SQL query to execute
  • Dynamic endpoint tools - Additional tools are automatically generated based on your endpoint metadata

Configuration Options

  • --disable-tools <tools> - Comma-separated list of tool names to disable. For example: --disable-tools raw_query,system_list_databases will disable the raw query and database listing tools. You can also disable any defined queries by including their tool names in this list.

Development

Development with the MCP inspector

The easiest way to get started is to use the MCP inspector to run the server in development mode:

npm run inspect

Development with Claude Desktop

Install dependencies:

npm install

Add the following to your Claude Desktop configuration file:

{
  "mcpServers": {
    "neurelo-connect": {
      "command": "npx",
      "args": ["tsx", "REPOSITORY_ROOT/src/main.ts", "start"],
      "cwd": "REPOSITORY_ROOT",
      "env": {
        "ENGINE_API_KEY": "YOUR_ENGINE_API_KEY",
        "ENGINE_BASE_PATH": "YOUR_ENGINE_BASE_PATH"
      }
    }
  }
}

Then, restart Claude each time you want to test changes.

Contributing

We welcome contributions! Please feel free to submit a Pull Request.