loading…
Search for a command to run...
loading…
# NWO Robotics MCP Server Control real robots, IoT devices, and autonomous agent swarms through natural language — powered by the [NWO Robotics API](https://nwo
vla_inference · edge_inference · list_models · get_model_info · get_streaming_config --- ### 🦾 Robot Control & State Query live robot state (joint angles, gripper, battery, position), execute pre-computed action sequences, and fuse camera + lidar + thermal + force + GPS sensor inputs into a single inference call. query_robot_state · execute_actions · sensor_fusion · robot_query · get_agent_status --- ### 🗺️ Task Planning & Learning Decompose complex instructions into ordered subtasks, execute them step by step, poll progress, and log outcomes so the model learns and improves with every run. task_planner · execute_subtask · status_poll · learning_recommend · learning_log --- ### 🔑 Agent Management Self-register a new AI agent in under 2 seconds, check your monthly API quota, upgrade tiers by paying ETH, and manage robot registrations and capabilities. | Tier | Calls/month | Cost | |------|-------------|------| | Free | 100,000 | $0 | | Prototype | 500,000 | ~0.015 ETH/mo | | Production | Unlimited | ~0.062 ETH/mo | register_agent · check_balance · pay_upgrade · create_wallet · register_robot · update_agent · get_agent_info --- ### 🔍 Agent Discovery Discover all available execution modes (mock / simulated / live), robot types, VLA models, and sensor capabilities. Validate tasks with a dry-run before committing to execution. nwo_health · nwo_whoami · discover_capabilities · dry_run · plan_task --- ### 🔌 ROS2 Bridge (Physical Robots) Connect directly to physical robots over the ROS2 bridge. Send joint commands, submit action sequences, and trigger emergency stops on one or all robots within 10ms. Supported: UR5e, Panda, Spot, Unitree G1, and more. ros2_list_robots · ros2_robot_status · ros2_send_command · ros2_submit_action · ros2_emergency_stop · ros2_emergency_stop_all · ros2_get_robot_types --- ### 🧪 Physics Simulation Simulate trajectories, check for collisions, estimate joint torques, validate grasps, and plan collision-free motions with MoveIt2 — before touching real hardware. simulate_trajectory · check_collision · estimate_torques · validate_grasp · plan_motion · get_scene_library · generate_scene --- ### 📐 Embodiment & Calibration Browse the robot embodiment registry (DOF, joint limits, sensors), download URDF models, get normalization parameters for VLA inference, and run automatic joint calibration. list_embodiments · get_robot_specs · get_normalization · download_urdf · get_test_results · compare_robots · run_calibration · calibrate_confidence --- ### 🧠 Online RL & Fine-Tuning Start online reinforcement learning sessions, stream state/action/reward telemetry, build fine-tuning datasets from logged runs, and launch LoRA fine-tuning jobs on any base VLA model. start_rl_training · submit_rl_telemetry · create_finetune_dataset · start_finetune_job --- ### 🖐️ Tactile Sensing (ORCA Hand) Read 256-taxel tactile sensor arrays from the ORCA robot hand, assess grip quality and object texture, and detect slip in real time to prevent dropped objects. read_tactile · process_tactile · detect_slip --- ### 📦 Dataset Hub Access 1.54 million+ human robot demonstrations for the Unitree G1 humanoid (430+ hours, LeRobot-compatible format) for training and fine-tuning. list_datasets --- ### 🫀 Cardiac Blockchain Identity (Base Mainnet) Register AI agents on Base mainnet and receive a permanent soul-bound Digital ID (rootTokenId). Issue verifiable credentials for task authorization, swarm control, location access, and payments — all gasless via the NWO relayer. Smart contracts deployed on Base Mainnet (Chain ID 8453): - NWOIdentityRegistry — 0x78455AFd5E5088F8B5fecA0523291A75De1dAfF8 - NWOAccessController — 0x29d177bedaef29304eacdc63b2d0285c459a0f50 - NWOPaymentProcessor — 0x4afa4618bb992a073dbcfbddd6d1aebc3d5abd7c cardiac_register_agent · cardiac_identify_agent · cardiac_renew_key · cardiac_issue_credential · cardiac_check_credential · cardiac_grant_access · cardiac_get_nonce · cardiac_check_access · cardiac_payment_process --- ### 🔮 Cardiac Oracle Validate ECG biometric data from smartwatches to authenticate human identities, compute cardiac hashes, and verify recent validations. oracle_health · oracle_validate_ecg · oracle_hash_ecg · oracle_verify --- ## Supported Robot Models | Model | Type | Capabilities | |-------|------|--------------| | xiaomi-robotics-0 | VLA | Grasp, navigate, manipulate | | pi05 | VLA | General manipulation | | groot_n1.7 | VLA | Humanoid control | | deepseek-ocr-2b | OCR | Label reading, text recognition | --- ## Example Usage Pick and place: > "Pick up the red box from the table and place it on shelf B" Sensor query: > "What is the temperature in warehouse zone 3?" Safety: > "Run a safety check before moving robot_001 to the loading dock" Swarm: > "Deploy all available robots to patrol the perimeter" Learning: > "What grip technique should I use for fragile glass objects?" --- ## Links - 🌐 NWO Capital - 📄 Agent Skill File - 📖 API Docs - 🧬 Cardiac SDK - 🔑 Get API Key - 🤗 Live Demo - 📜 OpenAPI Spec --- ## Support 📧 [email protected]Smithery CLI connects your agents to thousands of skills and MCP servers directly from the command line. To get started, simply run npx skills add smithery/cli.
npm install -g smithery@latest
Requires Node.js 20+.
smithery mcp search [term] # Search the Smithery registry
smithery mcp add <url> # Add an MCP server connection
smithery mcp list # List your connections
smithery mcp remove <ids...> # Remove connections
Interact with tools from MCP servers connected via smithery mcp.
smithery tool list [connection] # List tools from your connected MCP servers
smithery tool find [query] # Search tools by name or intent
smithery tool get <connection> <tool> # Show full details for one tool
smithery tool call <connection> <tool> [args] # Call a tool
Browse skills on the Smithery Skills Registry and install them with the upstream installer:
npx skills add <skill> # e.g. npx skills add smithery-ai/cli
smithery auth login # Login with Smithery (OAuth)
smithery auth logout # Log out
smithery auth whoami # Check current user
smithery auth token # Mint a service token
smithery auth token --policy '<json>' # Mint a restricted token
smithery namespace list # List your namespaces
smithery namespace use <name> # Set current namespace
smithery mcp publish <url> -n <org/server> # Publish an MCP server URL
smithery mcp publish <bundle.mcpb> -n <org/server> # Publish an MCP bundle
# Search and connect to an MCP server
smithery mcp search "github"
smithery mcp add github --id github
# Find and call tools from your connected MCP servers
smithery tool find "create issue"
smithery tool call github create_issue '{"title":"Bug fix","body":"..."}'
# Browse and install skills
smithery skill search "frontend" --json --page 2
smithery skill add anthropics/frontend-design --agent claude-code
# Publish your MCP server URL
smithery mcp publish https://my-mcp-server.com -n myorg/my-server
# Publish a built MCP bundle
smithery mcp publish ./server.mcpb -n myorg/my-server
git clone https://github.com/smithery-ai/cli
cd cli && pnpm install && pnpm run build
npx . --help
Contributions welcome! Please submit a Pull Request.
Выполни в терминале:
claude mcp add srv-d7aoqmh5pdvs7391dcqg -- npx -y @smithery/cli run ciprianpater/srv-d7aoqmh5pdvs7391dcqgНе уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development