
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
This library provides UDP-based broadcasting of Meshtastic-compatible packets.
pip install mudp
To view all Meshtastic udp activity on your LAN:
mudp
from mudp import (
conn,
node,
send_nodeinfo,
send_text_message,
send_device_telemetry,
send_position,
send_environment_metrics,
send_power_metrics,
)
MCAST_GRP = "224.0.0.69"
MCAST_PORT = 4403
node.node_id = "!deadbeef"
node.long_name = "UDP Test"
node.short_name = "UDP"
node.channel = "LongFast"
node.key = "1PG7OiApB1nwvP+rz05pAQ=="
conn.setup_multicast(MCAST_GRP, MCAST_PORT)
send_nodeinfo(keys=values...)
send_device_telemetry(keys=values...)
send_position(latitude, longitude, keys=values...)
send_environment_metrics(keys=values...)
send_power_metrics(keys=values...)
send_health_metrics(keys=values...)
send_text_message("text", keys=values...)
Optional Arguments for all message types:
Example:
send_text_message("Happy New Year" to=12345678, hop_limit=5)
Supported keyword arguments for nodeinfo:
Supported keyword arguments for device metrics:
Supported keyword arguments for position metrics:
Supported keyword arguments for environment metrics:
Supported keyword arguments for power metrics:
Supported keyword arguments for health metrics:
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
FAQs
A library for Meshtastic communication over UDP.
We found that mudp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.