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.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • 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 BuildlistAllMCPs 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 Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. 🏠 Home Automation
  3. Regennexus Mcp
R
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:11:50 AM

Regennexus Mcp

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 Repository

AI-controlled hardware: GPIO, robotics, sensors, cameras, mesh networking for IoT

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 β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "regennexus-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "regennexus-mcp"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing Alternatives🏠 More in Home Automation

Documentation Overview

RegenNexus MCP Server

RegenNexus Logo

MCP (Model Context Protocol) server adapter for RegenNexus UAP - enabling AI-controlled hardware.

This package exposes RegenNexus hardware capabilities as MCP tools, allowing Claude Code, Claude Desktop, and other MCP-compatible AI clients to control physical devices.

Features

  • Hardware Control: GPIO, PWM, robotic arms, sensors, cameras
  • Mesh Networking: Discover and communicate with nodes over LAN (UDP/WebSocket)
  • Serial/I2C: Communicate with microcontrollers and sensors
  • Two Connection Modes: Local (direct import) or Remote (HTTP API)
  • Auto-Discovery: Automatically detects installed RegenNexus and mesh nodes
  • MCP Compatible: Works with Claude, Codex, Gemini, and any MCP client

Installation

bash
# MCP server only (for remote UAP connection)

pip install regennexus-mcp



# With local UAP support

pip install regennexus-mcp[local]



# With remote API support

pip install regennexus-mcp[remote]



# Everything

pip install regennexus-mcp[all]

Quick Start

1. Configure Claude Code

Add to your Claude Code MCP settings:

config.json
{

  "mcpServers": {

    "regennexus": {

      "command": "regennexus-mcp"

    }

  }

}

2. Use with Claude

Once configured, Claude can control hardware:

Code
User: "List all connected devices"

Claude: [calls list_devices tool]



User: "Turn on GPIO pin 18"

Claude: [calls gpio_write with pin=18, value=1]



User: "Move the robot arm to position [0, 45, -30, 0, 60, 0, 0]"

Claude: [calls robot_arm_move with positions]

Configuration

Configure via environment variables:

bash
# Connection mode: auto, local, or remote

REGENNEXUS_MODE=auto



# Remote mode settings

REGENNEXUS_ENDPOINT=https://your-uap-server.com

REGENNEXUS_API_KEY=your-api-key



# Local mode settings

REGENNEXUS_CONFIG=/path/to/regennexus-config.yaml



# Logging

REGENNEXUS_LOG_LEVEL=INFO

Claude Code Config with Environment

config.json
{

  "mcpServers": {

    "regennexus": {

      "command": "regennexus-mcp",

      "env": {

        "REGENNEXUS_MODE": "local",

        "REGENNEXUS_LOG_LEVEL": "DEBUG"

      }

    }

  }

}

Available Tools (Free Tier)

These tools are provided by the regennexus package (open source):

GPIO & Basic I/O

ToolDescription
gpio_writeSet a GPIO pin to HIGH (1) or LOW (0)
gpio_readRead the current state of a GPIO pin
pwm_writeSet PWM duty cycle (0-100%) for motors, LEDs, servos

Sensors & I2C

ToolDescription
read_sensorRead value from a sensor (temperature, humidity, etc.)
i2c_scanScan I2C bus for connected devices

Serial Communication

ToolDescription
serial_sendSend data over serial port (UART)
serial_readRead data from serial port

Robotics

ToolDescription
robot_arm_moveMove a robotic arm to specified joint positions
gripper_controlOpen or close a robotic gripper

Device Management

ToolDescription
list_devicesList all connected hardware devices
device_infoGet device details (CPU, memory, IP, temperature)

Camera

ToolDescription
camera_captureCapture a single image from a camera

Mesh Network

ToolDescription
list_nodesList all nodes in the mesh network
ping_nodePing a node and measure network latency
send_to_nodeSend a message/command to a specific node
broadcast_messageBroadcast a message to all nodes
find_by_capabilityFind nodes with a specific capability

Premium tools with additional capabilities are available separately.

Connection Modes

Local Mode (Recommended)

Requires regennexus package installed on the same machine. Directly imports UAP modules for minimal latency. No API server needed.

Terminal
pip install regennexus-mcp[local]

REGENNEXUS_MODE=local regennexus-mcp

This is the recommended mode for most users.

Remote Mode (Advanced)

Connects to a UAP instance running as a service via HTTP API. Requires UAP API server to be running (regen server).

bash
# On the UAP server machine:

regen server --port 8080



# On the Claude Code machine:

pip install regennexus-mcp[remote]

REGENNEXUS_MODE=remote \

REGENNEXUS_ENDPOINT=http://uap-server:8080 \

regennexus-mcp

Auto Mode (Default)

Tries local first, falls back to remote if UAP not installed.

bash
regennexus-mcp  # Auto-detects best mode

Running Standalone

bash
# Run MCP server

regennexus-mcp



# Or via Python

python -m regennexus_mcp

Architecture

Code
Claude Code (MCP Client)

        β”‚

        β–Ό

regennexus-mcp (This Package)

        β”‚

        β”œβ”€β”€ Local Mode: Direct import

        β”‚       β”‚

        β”‚       β–Ό

        β”‚   regennexus (UAP)

        β”‚

        └── Remote Mode: HTTP API

                β”‚

                β–Ό

            UAP Service

Development

bash
# Clone

git clone https://github.com/regennow/regennexus-mcp

cd regennexus-mcp



# Install dev dependencies

pip install -e ".[dev]"



# Run tests

pytest



# Format code

black src/

ruff check src/

Related Projects

  • RegenNexus UAP - Universal Adapter Protocol
  • MCP Specification - Model Context Protocol

License

MIT License

Related MCP Servers

View all in Home Automation View all alternatives
  • H
    Home Assistant Mcp

    Vibecode your Home Assistant setup from your IDE: automations, dashboards, themes and configs

    🏠 Home Automation0 views
    Compare vs Home Assistant Mcp β†’
  • M
    Mcp

    Connect AI agents to IoT devices β€” read sensors, send commands, manage ESP32 fleets.

    🏠 Home Automation0 views
    Compare vs Mcp β†’
  • Smartest Tv logoSmartest Tv

    Control any smart TV with natural language. Play Netflix, YouTube, Spotify by name with deep linking, cast URLs, scene presets, multi-room audio, and multi-TV sync. Supports LG, Samsung, Android TV, Roku. 21 MCP tools, no cloud required.

    🏠 Home Automation0 views
    Compare vs Smartest Tv β†’
  • Mockd logoMockd

    Multi-protocol API mock server with 18 MCP tools. Mock HTTP, GraphQL, gRPC, WebSocket, MQTT, SSE, and SOAP APIs with chaos engineering, stateful CRUD, 8 import formats (OpenAPI, Postman, HAR, WireMock, cURL, Mockoon, WSDL), and deterministic seeded responses.

    🏠 Home Automation2 views
    Compare vs Mockd β†’

Frequently Asked Questions about Regennexus Mcp

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "regennexus-mcp": { "command": "npx", "args": ["-y", "regennexus-mcp"] } }

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 PreviewRegennexus Mcp AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/regennexus-mcp?style=directory)](https://allmcps.com/mcp/regennexus-mcp)
HTML Embed
<a href="https://allmcps.com/mcp/regennexus-mcp"><img src="https://allmcps.com/api/badge/regennexus-mcp?style=directory" alt="Regennexus Mcp on AllMCPs" /></a>

Technical Specs & Signals

Category🏠Home Automation
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
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.
27Quality signal: Emerging Β· 27/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 ownership8/20
Documentation & tools11/30
Adoption & activity1/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.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it 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 🏠 Home Automation β†’Alternatives to Regennexus Mcp β†’Install in Claude DesktopInstall in CursorInstall in VS Code