RegenNexus MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@RegenNexus MCP Serverturn on the LED connected to GPIO pin 18"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
RegenNexus MCP Server
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
Related MCP server: mcp-esieabot
Installation
# 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:
{
"mcpServers": {
"regennexus": {
"command": "regennexus-mcp"
}
}
}2. Use with Claude
Once configured, Claude can control hardware:
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:
# 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=INFOClaude Code Config with Environment
{
"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
Tool | Description |
| Set a GPIO pin to HIGH (1) or LOW (0) |
| Read the current state of a GPIO pin |
| Set PWM duty cycle (0-100%) for motors, LEDs, servos |
Sensors & I2C
Tool | Description |
| Read value from a sensor (temperature, humidity, etc.) |
| Scan I2C bus for connected devices |
Serial Communication
Tool | Description |
| Send data over serial port (UART) |
| Read data from serial port |
Robotics
Tool | Description |
| Move a robotic arm to specified joint positions |
| Open or close a robotic gripper |
Device Management
Tool | Description |
| List all connected hardware devices |
| Get device details (CPU, memory, IP, temperature) |
Camera
Tool | Description |
| Capture a single image from a camera |
Mesh Network
Tool | Description |
| List all nodes in the mesh network |
| Ping a node and measure network latency |
| Send a message/command to a specific node |
| Broadcast a message to all nodes |
| Find 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.
pip install regennexus-mcp[local]
REGENNEXUS_MODE=local regennexus-mcpThis 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).
# 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-mcpAuto Mode (Default)
Tries local first, falls back to remote if UAP not installed.
regennexus-mcp # Auto-detects best modeRunning Standalone
# Run MCP server
regennexus-mcp
# Or via Python
python -m regennexus_mcpArchitecture
Claude Code (MCP Client)
│
▼
regennexus-mcp (This Package)
│
├── Local Mode: Direct import
│ │
│ ▼
│ regennexus (UAP)
│
└── Remote Mode: HTTP API
│
▼
UAP ServiceDevelopment
# 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
This server cannot be deployed
Maintenance
Related MCP Connectors
Zero-setup MCP gateway securely connecting AI to your tools with authentication and workflows
Manage your IoT device fleet directly from Claude. Create device templates with datastreams and events, provision new devices, read live sensor data, and control outputs. The Blynk connector integrates with the Blynk IoT platform, enabling direct configuration and monitoring of connected devices and infrastructure.
Protocol-native energy infrastructure orchestration for AI data centers. Provides 46 MCP tools across 8 grid protocols (IEC-61850, DNP3, Modbus, OCPP, OpenADR, IEEE 2030.5, IEC 60870-5-104, ICCP) with 5 core API primitives: connect, dispatch, settle, comply, and intel. Enables AI agents to programmatically interact with substations, grid interfaces, and energy assets for real-time workload-grid coordination.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to control hardware devices like Arduino, Raspberry Pi, 3D printers, CNC machines, and custom robots via serial ports and HTTP. Provides tools for device discovery, command sending, sensor reading, servo control, G-code execution, and emergency stops with safety features.101 PyPIMIT
- FlicenseNot gradedqualityDmaintenanceEnables natural language control of an esieabot robot (motors, servo, camera) through Claude Desktop or MCP Inspector.-
- AlicenseNot gradedqualityAmaintenanceEnables cloud LLM agents to discover and invoke physical hardware on edge and IoT devices through standard MCP tools, bridging constrained device channels like UART, BLE, and Wi-Fi.3MIT
- AlicenseNot gradedqualityBmaintenanceEnables Claude, Claude Desktop, and Cursor to read sensor values, monitor device status, and execute real-world actions through Vento boards and agents.MIT