# RobotArm MCP P340
[English](#english) | [中文](#chinese)
<a name="english"></a>
## Overview
A Model Context Protocol (MCP) server implementation that provides natural language control for ElephantRobotics MyCobot series robotic arms (especially optimized for ultraArmP340). This server enables controlling robotic arms through conversational AI, making robotics accessible to everyone.
## Features
- 🤖 Support for multiple MyCobot models (ultraArmP340, MyCobot280, MyCobot320)
- 🎮 Natural language control via MCP protocol
- 🔧 Simulation mode for development without physical hardware
- 🛡️ Safety features including emergency stop
- 📊 Real-time status monitoring
## Components
### Tools
The server provides the following control tools:
#### Connection Management
- **connect_robot** - Connect to a robotic arm
- Input: `model` (string): Robot model
- Input: `port` (string): Serial port
- Returns: Connection status
#### Status Monitoring
- **get_robot_status** - Get current robot status
- Returns: Current angles, coordinates, gripper/pump state, movement status
#### Movement Control
- **move_to_angles** - Move joints to specific angles
- Input: `angles` (array): Target angles for each joint
- Input: `speed` (int): Movement speed
- Returns: Movement confirmation
- **move_to_coords** - Move to specific coordinates
- Input: `coords` (array): Target coordinates
- Input: `speed` (int): Movement speed
- Returns: Movement confirmation
#### End Effector Control
- **control_gripper** - Control gripper open/close
- **control_pump** - Control suction pump on/off
#### System Commands
- **go_zero** - Return robot to zero position
- **emergency_stop** - Emergency stop all movements
#### Advanced Motion Control
- **execute_action_sequence** - Execute custom action sequences
- Input: `sequence_name` (string): Descriptive name for the sequence
- Input: `actions` (array): List of actions, each containing:
- `type`: Action type ("angles", "coords", "gripper", "pump", "wait")
- `angles/coords`: Target position (based on type)
- `speed`: Movement speed (optional, default 50)
- `duration`: Action duration in seconds (optional)
- `gripper_action`: "open" or "close" (for gripper type)
- `pump_action`: "on" or "off" (for pump type)
- Input: `default_interval` (float): Default interval between actions (optional, default 0.5s)
- Returns: Execution status with completed actions count
- Note: This tool enables complex behaviors like cat playing, circle drawing, dancing, and custom gestures through action sequences
### Resources
- **status://current** - Real-time robot status information
### Prompts
- **robot_control_guide** - Interactive guidance for robot control
- Arguments: `task` (task type)
- Provides step-by-step instructions
- **design_action_sequence** - Template for designing custom action sequences
- Arguments:
- `task_description`: Task description (e.g., "dancing", "cat playing", "massage")
- Provides structured guidance for action sequence design
- Helps design smooth, continuous movements with proper timing
## QuickStart/Usage with MCP Client
### Installation
1. Ensure Python 3.10 is installed
2. Install dependencies:
```bash
pip install robotarm-mcp-p340
```
### Configuration for Cursor
There are three methods to configure MCP in Cursor:
#### Method 1: Python Module Configuration (Recommended for Installed Package)
If you've installed the package via pip:
```json
{
"mcpServers": {
"mycobot": {
"command": "python",
"args": ["-u", "-m", "mycobot_mcp"],
"env": {
"SIMULATE": "1"
}
}
}
}
```
#### Method 2: Development Configuration (For GitHub Clone)
If you've cloned from GitHub and are developing:
```json
{
"mcpServers": {
"mycobot": {
"command": "python",
"args": [
"-u",
"-m",
"mycobot_mcp"
],
"env": {
"SIMULATE": "1",
"PYTHONPATH": "Fill in the absolute path to the src folder"
},
"cwd": "Fill in the absolute path to the project root"
}
}
}
Example:
{
"mcpServers": {
"mycobot": {
"command": "D:\\Anaconda3\\envs\\mycobot-mcp\\python.exe",
"args": [
"-u",
"-m",
"mycobot_mcp"
],
"env": {
"SIMULATE": "1",
"PYTHONPATH": "D:\\AI\\mycobot-mcp\\src"
},
"cwd": "D:\\AI\\mycobot-mcp"
}
}
}
```
**Important Notes:**
- "SIMULATE": "1" is for simulation testing without hardware. For real device testing, set SIMULATE to "0"
- Must use `-u` flag to disable Python output buffering
- Set `PYTHONPATH` to include the src directory
- Adjust paths according to your installation
#### Method 3: Batch File Configuration (Windows)
1. Create a batch file `start_mcp_server.bat`:
```batch
@echo off
cd /d D:\AI\mycobot-mcp
set PYTHONPATH=D:\AI\mycobot-mcp\src
set SIMULATE=1
D:\Anaconda3\envs\mycobot-mcp\python.exe -u -m mycobot_mcp
```
2. Configure Cursor:
```json
{
"mcpServers": {
"mycobot": {
"command": "D:\\AI\\mycobot-mcp\\start_mcp_server.bat"
}
}
}
```
#### Configuration Steps
1. Open Cursor Settings (Ctrl+,)
2. Search for "MCP" or "Model Context Protocol"
3. Add the configuration using one of the methods above
4. Restart Cursor to apply changes
#### Verification
After successful configuration, you should see:
- ✅ "9 tools enabled" in the MCP status
- ✅ Tools available in chat: `connect_robot`, `get_robot_status`, etc.
### Usage Examples
1. **Connect to robot:**
- "Connect to my ultraArm P340 robot"
- "Initialize robot on COM3 port" (adjust the number based on your device's actual COM port, default is 3)
2. **Basic movements:**
- "Move the robot arm to position [200, 0, 150]"
- "Set joint angles to [45, 30, -20]"
- "Return to home position"
3. **Gripper control:**
- "Open the gripper"
- "Close gripper to pick up object"
- "Turn on suction pump"
4. **Complex tasks:**
- "Play with my cat using the robot arm"
- "Draw a circle on the table"
- "Show me how to write Chinese characters"
- "Make the robot dance to music"
- "Create a custom waving gesture sequence"
### Development Mode
Set `SIMULATE=1` to test without hardware:
```bash
export SIMULATE=1 # Linux/Mac
set SIMULATE=1 # Windows
```
### Troubleshooting
If tools don't load properly:
1. **Check MCP logs in Cursor:**
- View → Output → Select "MCP" channel
- Look for error messages
2. **Test the server locally:**
```bash
# For installed package
python -m mycobot_mcp
# For development (from project root)
cd D:\AI\mycobot-mcp
set PYTHONPATH=src
python -m mycobot_mcp
```
3. **Common issues and solutions:**
- **"No module named 'mycobot_mcp'"**:
- For development: Ensure `PYTHONPATH` includes the `src` folder
- For installed: Run `pip install -e .` from project root
- **"Tools not loading"**:
- Check that you're using `-m mycobot_mcp` not `-m mycobot_mcp.server`
- Verify the `cwd` is set to project root in development mode
- **Configuration tips:**
- ✅ Always use `-u` flag for unbuffered output
- ✅ Set `PYTHONPATH` to `src` folder (not `src/mycobot_mcp`)
- ✅ Use `cwd` to set working directory for development
- ❌ Don't run `server.py` directly anymore
## Safety Guidelines
⚠️ **Important Safety Information:**
1. Always ensure a clear workspace around the robot
2. Keep hands and objects away from moving parts
3. Use emergency stop if unexpected behavior occurs
4. Start with slow speeds when testing new movements
5. Never use massage demonstrations on humans
6. Supervise pet interactions at all times
## License
This MCP server is licensed under the MIT License. See LICENSE file for details.
---
<a name="chinese"></a>
## 概述
RobotArm MCP P340 是一个基于模型上下文协议(MCP)的服务器实现,为大象机器人 MyCobot 系列机械臂提供自然语言控制功能(特别针对 ultraArmP340 进行了优化)。通过对话式 AI 控制机械臂,让机器人技术人人可用。
## 功能特点
- 🤖 支持多种 MyCobot 型号(ultraArmP340、MyCobot280、MyCobot320)
- 🎮 通过 MCP 协议实现自然语言控制机械臂
- 🔧 模拟模式支持无硬件开发
- 🛡️ 包含紧急停止等安全功能
- 📊 实时状态监控
## 组件说明
### 工具(Tools)
服务器提供以下控制工具:
#### 连接管理
- **connect_robot** - 连接机械臂
- 输入:`model`(字符串):机器人型号
- 输入:`port`(字符串):串口号
- 返回:连接状态
#### 状态监控
- **get_robot_status** - 获取机器人当前状态
- 返回:当前角度、坐标、夹爪/吸泵状态、运动状态
#### 运动控制
- **move_to_angles** - 移动关节到指定角度
- 输入:`angles`(数组):各关节目标角度
- 输入:`speed`(整数):运动速度
- 返回:运动确认
- **move_to_coords** - 移动到指定坐标
- 输入:`coords`(数组):目标坐标
- 输入:`speed`(整数):运动速度
- 返回:运动确认
#### 末端执行器控制
- **control_gripper** - 控制夹爪开合
- **control_pump** - 控制吸泵开关
#### 系统命令
- **go_zero** - 回零位
- **emergency_stop** - 紧急停止
#### 高级运动控制
- **execute_action_sequence** - 执行自定义动作序列
- 输入:`sequence_name`(字符串):动作序列的描述性名称
- 输入:`actions`(数组):动作列表,每个动作包含:
- `type`:动作类型("angles"、"coords"、"gripper"、"pump"、"wait")
- `angles/coords`:目标位置(根据类型)
- `speed`:移动速度(可选,默认50)
- `duration`:动作持续时间(秒,可选)
- `gripper_action`:"open"或"close"(夹爪类型)
- `pump_action`:"on"或"off"(吸泵类型)
- 输入:`default_interval`(浮点数):动作间默认间隔(可选,默认0.5秒)
- 返回:执行状态及完成的动作数
- 注意:此工具可实现逗猫、画圆、跳舞等复杂行为,通过动作序列组合实现各种创意动作
### 资源(Resources)
- **status://current** - 实时机器人状态信息
### 提示(Prompts)
- **robot_control_guide** - 机器人控制交互指南
- 参数:`task`(任务类型)
- 提供分步骤操作指导
- **design_action_sequence** - 设计自定义动作序列的模板
- 参数:
- `task_description`:任务描述(如"跳舞"、"逗猫"、"按摩"等)
- 提供结构化的动作序列设计指导
- 帮助设计流畅连续的动作及合理的时间安排
## 快速开始
### 安装配置
1. 确保已安装 Python 3.10
2. 安装依赖:
```bash
pip install robotarm-mcp-p340
```
### Cursor 配置方法
有三种方法在 Cursor 中配置 MCP:
#### 方法 1:Python 模块配置(推荐用于已安装的包)
如果您已通过 pip 安装了包:
```json
{
"mcpServers": {
"mycobot": {
"command": "python",
"args": ["-u", "-m", "mycobot_mcp"],
"env": {
"SIMULATE": "1"
}
}
}
}
```
#### 方法 2:开发配置(用于从 GitHub 克隆的项目)
如果您从 GitHub 克隆并正在开发:
```json
{
"mcpServers": {
"mycobot": {
"command": "python",
"args": [
"-u",
"-m",
"mycobot_mcp"
],
"env": {
"SIMULATE": "1",
"PYTHONPATH": "填写 src 文件夹的绝对路径"
},
"cwd": "填写项目根目录的绝对路径"
}
}
}
示例如下:
{
"mcpServers": {
"mycobot": {
"command": "D:\\Anaconda3\\envs\\mycobot-mcp\\python.exe",
"args": [
"-u",
"-m",
"mycobot_mcp"
],
"env": {
"SIMULATE": "1",
"PYTHONPATH": "D:\\AI\\mycobot-mcp\\src"
},
"cwd": "D:\\AI\\mycobot-mcp"
}
}
}
```
**重要说明:**
- "SIMULATE": "1"为无硬件设备的模拟测试,实机测试需要把SIMULATE值设置为"0"
- 必须使用 `-u` 参数禁用 Python 输出缓冲
- 设置 `PYTHONPATH` 包含 src 目录
- 根据您的安装路径调整路径
#### 方法 3:批处理文件配置(Windows)
1. 创建批处理文件 `start_mcp_server.bat`:
```batch
@echo off
cd /d D:\AI\mycobot-mcp
set PYTHONPATH=D:\AI\mycobot-mcp\src
set SIMULATE=1
D:\Anaconda3\envs\mycobot-mcp\python.exe -u -m mycobot_mcp
```
2. 配置 Cursor:
```json
{
"mcpServers": {
"mycobot": {
"command": "D:\\AI\\mycobot-mcp\\start_mcp_server.bat"
}
}
}
```
#### 配置步骤
1. 打开 Cursor 设置(Ctrl+,)
2. 搜索 "MCP" 或 "Model Context Protocol"
3. 使用上述方法之一添加配置
4. 重启 Cursor 使配置生效
#### 验证配置
配置成功后,您应该看到:
- ✅ MCP 状态显示 "9 tools enabled"
- ✅ 聊天中可用工具:`connect_robot`、`get_robot_status` 等
### 使用示例
1. **连接机器人:**
- "连接我的 ultraArm P340 机械臂"
- "初始化 COM3 端口的机器人"(根据您设备的实际 COM 端口调整数字,默认是 3)
2. **基础运动:**
- "移动机械臂到位置 [200, 0, 150]"
- "设置关节角度为 [45, 30, -20]"
- "回到零位"
3. **夹爪控制:**
- "打开夹爪"
- "闭合夹爪抓取物体"
- "开启吸泵"
4. **复杂任务:**
- "用机械臂逗猫"
- "在桌上画个圆"
- "演示如何写汉字"
- "让机器人跟着音乐跳舞"
- "创建一个自定义的挥手动作序列"
### 开发模式
设置 `SIMULATE=1` 无需硬件测试:
```bash
export SIMULATE=1 # Linux/Mac
set SIMULATE=1 # Windows
```
### 故障排除
如果工具加载失败:
1. **检查 Cursor 的 MCP 日志:**
- 视图 → 输出 → 选择 "MCP" 通道
- 查看错误信息
2. **本地测试服务器:**
```bash
# 对于已安装的包
python -m mycobot_mcp
# 对于开发模式(从项目根目录)
cd D:\AI\mycobot-mcp
set PYTHONPATH=src
python -m mycobot_mcp
```
3. **常见问题和解决方案:**
- **"No module named 'mycobot_mcp'"**:
- 开发模式:确保 `PYTHONPATH` 包含 `src` 文件夹
- 已安装:从项目根目录运行 `pip install -e .`
- **"工具未加载"**:
- 检查是否使用 `-m mycobot_mcp` 而不是 `-m mycobot_mcp.server`
- 验证开发模式下 `cwd` 设置为项目根目录
- **配置提示:**
- ✅ 始终使用 `-u` 标志实现无缓冲输出
- ✅ 设置 `PYTHONPATH` 为 `src` 文件夹(而不是 `src/mycobot_mcp`)
- ✅ 使用 `cwd` 为开发设置工作目录
- ❌ 不要再直接运行 `server.py`
## 安全指南
⚠️ **重要安全信息:**
1. 确保机器人周围有足够空间
2. 运动时远离机械部件
3. 出现异常立即使用紧急停止
4. 测试新动作时使用低速
5. 按摩演示仅用于展示,勿用于真人
6. 与宠物互动时全程监督
## 许可证
本项目采用 MIT 许可证。详见 LICENSE 文件。
Raw data
{
"_id": null,
"home_page": null,
"name": "robotarm-mcp-p340",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "mcp, mycobot, robotics, elephantrobotics, robot-arm",
"author": null,
"author_email": "FanGe <archifancy@gmail.com>, guoyuaarg <aargwangguoyu@outlook.com>",
"download_url": "https://files.pythonhosted.org/packages/27/33/9a958b1b018d328912263037546d6bbf43f483f38fb68d7a67c27d2d37f8/robotarm_mcp_p340-0.1.0.tar.gz",
"platform": null,
"description": "# RobotArm MCP P340\r\n\r\n[English](#english) | [\u4e2d\u6587](#chinese)\r\n\r\n<a name=\"english\"></a>\r\n## Overview\r\n\r\nA Model Context Protocol (MCP) server implementation that provides natural language control for ElephantRobotics MyCobot series robotic arms (especially optimized for ultraArmP340). This server enables controlling robotic arms through conversational AI, making robotics accessible to everyone.\r\n\r\n## Features\r\n\r\n- \ud83e\udd16 Support for multiple MyCobot models (ultraArmP340, MyCobot280, MyCobot320)\r\n- \ud83c\udfae Natural language control via MCP protocol\r\n- \ud83d\udd27 Simulation mode for development without physical hardware\r\n- \ud83d\udee1\ufe0f Safety features including emergency stop\r\n- \ud83d\udcca Real-time status monitoring\r\n\r\n## Components\r\n\r\n### Tools\r\n\r\nThe server provides the following control tools:\r\n\r\n#### Connection Management\r\n- **connect_robot** - Connect to a robotic arm\r\n - Input: `model` (string): Robot model\r\n - Input: `port` (string): Serial port\r\n - Returns: Connection status\r\n\r\n#### Status Monitoring\r\n- **get_robot_status** - Get current robot status\r\n - Returns: Current angles, coordinates, gripper/pump state, movement status\r\n\r\n#### Movement Control\r\n- **move_to_angles** - Move joints to specific angles\r\n - Input: `angles` (array): Target angles for each joint\r\n - Input: `speed` (int): Movement speed\r\n - Returns: Movement confirmation\r\n\r\n- **move_to_coords** - Move to specific coordinates\r\n - Input: `coords` (array): Target coordinates\r\n - Input: `speed` (int): Movement speed\r\n - Returns: Movement confirmation\r\n\r\n#### End Effector Control\r\n- **control_gripper** - Control gripper open/close\r\n- **control_pump** - Control suction pump on/off\r\n\r\n#### System Commands\r\n- **go_zero** - Return robot to zero position\r\n- **emergency_stop** - Emergency stop all movements\r\n\r\n#### Advanced Motion Control\r\n- **execute_action_sequence** - Execute custom action sequences\r\n - Input: `sequence_name` (string): Descriptive name for the sequence\r\n - Input: `actions` (array): List of actions, each containing:\r\n - `type`: Action type (\"angles\", \"coords\", \"gripper\", \"pump\", \"wait\")\r\n - `angles/coords`: Target position (based on type)\r\n - `speed`: Movement speed (optional, default 50)\r\n - `duration`: Action duration in seconds (optional)\r\n - `gripper_action`: \"open\" or \"close\" (for gripper type)\r\n - `pump_action`: \"on\" or \"off\" (for pump type)\r\n - Input: `default_interval` (float): Default interval between actions (optional, default 0.5s)\r\n - Returns: Execution status with completed actions count\r\n - Note: This tool enables complex behaviors like cat playing, circle drawing, dancing, and custom gestures through action sequences\r\n\r\n\r\n### Resources\r\n\r\n- **status://current** - Real-time robot status information\r\n\r\n### Prompts\r\n\r\n- **robot_control_guide** - Interactive guidance for robot control\r\n - Arguments: `task` (task type)\r\n - Provides step-by-step instructions\r\n\r\n- **design_action_sequence** - Template for designing custom action sequences\r\n - Arguments:\r\n - `task_description`: Task description (e.g., \"dancing\", \"cat playing\", \"massage\")\r\n - Provides structured guidance for action sequence design\r\n - Helps design smooth, continuous movements with proper timing\r\n\r\n## QuickStart/Usage with MCP Client\r\n\r\n### Installation\r\n\r\n1. Ensure Python 3.10 is installed\r\n2. Install dependencies:\r\n```bash\r\npip install robotarm-mcp-p340\r\n```\r\n\r\n### Configuration for Cursor\r\n\r\nThere are three methods to configure MCP in Cursor:\r\n\r\n#### Method 1: Python Module Configuration (Recommended for Installed Package)\r\n\r\nIf you've installed the package via pip:\r\n```json\r\n{\r\n \"mcpServers\": {\r\n \"mycobot\": {\r\n \"command\": \"python\",\r\n \"args\": [\"-u\", \"-m\", \"mycobot_mcp\"],\r\n \"env\": {\r\n \"SIMULATE\": \"1\"\r\n }\r\n }\r\n }\r\n}\r\n```\r\n\r\n#### Method 2: Development Configuration (For GitHub Clone)\r\n\r\nIf you've cloned from GitHub and are developing:\r\n\r\n```json\r\n{\r\n \"mcpServers\": {\r\n \"mycobot\": {\r\n \"command\": \"python\",\r\n \"args\": [\r\n \"-u\",\r\n \"-m\",\r\n \"mycobot_mcp\"\r\n ],\r\n \"env\": {\r\n \"SIMULATE\": \"1\",\r\n \"PYTHONPATH\": \"Fill in the absolute path to the src folder\"\r\n },\r\n \"cwd\": \"Fill in the absolute path to the project root\"\r\n }\r\n }\r\n}\r\n\r\nExample:\r\n\r\n{\r\n \"mcpServers\": {\r\n \"mycobot\": {\r\n \"command\": \"D:\\\\Anaconda3\\\\envs\\\\mycobot-mcp\\\\python.exe\",\r\n \"args\": [\r\n \"-u\",\r\n \"-m\",\r\n \"mycobot_mcp\"\r\n ],\r\n \"env\": {\r\n \"SIMULATE\": \"1\",\r\n \"PYTHONPATH\": \"D:\\\\AI\\\\mycobot-mcp\\\\src\"\r\n },\r\n \"cwd\": \"D:\\\\AI\\\\mycobot-mcp\"\r\n }\r\n }\r\n}\r\n```\r\n\r\n**Important Notes:**\r\n- \"SIMULATE\": \"1\" is for simulation testing without hardware. For real device testing, set SIMULATE to \"0\"\r\n- Must use `-u` flag to disable Python output buffering\r\n- Set `PYTHONPATH` to include the src directory\r\n- Adjust paths according to your installation\r\n\r\n#### Method 3: Batch File Configuration (Windows)\r\n\r\n1. Create a batch file `start_mcp_server.bat`:\r\n```batch\r\n@echo off\r\ncd /d D:\\AI\\mycobot-mcp\r\nset PYTHONPATH=D:\\AI\\mycobot-mcp\\src\r\nset SIMULATE=1\r\nD:\\Anaconda3\\envs\\mycobot-mcp\\python.exe -u -m mycobot_mcp\r\n```\r\n\r\n2. Configure Cursor:\r\n```json\r\n{\r\n \"mcpServers\": {\r\n \"mycobot\": {\r\n \"command\": \"D:\\\\AI\\\\mycobot-mcp\\\\start_mcp_server.bat\"\r\n }\r\n }\r\n}\r\n```\r\n\r\n#### Configuration Steps\r\n\r\n1. Open Cursor Settings (Ctrl+,)\r\n2. Search for \"MCP\" or \"Model Context Protocol\"\r\n3. Add the configuration using one of the methods above\r\n4. Restart Cursor to apply changes\r\n\r\n#### Verification\r\n\r\nAfter successful configuration, you should see:\r\n- \u2705 \"9 tools enabled\" in the MCP status\r\n- \u2705 Tools available in chat: `connect_robot`, `get_robot_status`, etc.\r\n\r\n### Usage Examples\r\n\r\n1. **Connect to robot:**\r\n - \"Connect to my ultraArm P340 robot\"\r\n - \"Initialize robot on COM3 port\" (adjust the number based on your device's actual COM port, default is 3)\r\n\r\n2. **Basic movements:**\r\n - \"Move the robot arm to position [200, 0, 150]\"\r\n - \"Set joint angles to [45, 30, -20]\"\r\n - \"Return to home position\"\r\n\r\n3. **Gripper control:**\r\n - \"Open the gripper\"\r\n - \"Close gripper to pick up object\"\r\n - \"Turn on suction pump\"\r\n\r\n4. **Complex tasks:**\r\n - \"Play with my cat using the robot arm\"\r\n - \"Draw a circle on the table\"\r\n - \"Show me how to write Chinese characters\"\r\n - \"Make the robot dance to music\"\r\n - \"Create a custom waving gesture sequence\"\r\n\r\n### Development Mode\r\n\r\nSet `SIMULATE=1` to test without hardware:\r\n```bash\r\nexport SIMULATE=1 # Linux/Mac\r\nset SIMULATE=1 # Windows\r\n```\r\n\r\n### Troubleshooting\r\n\r\nIf tools don't load properly:\r\n\r\n1. **Check MCP logs in Cursor:**\r\n - View \u2192 Output \u2192 Select \"MCP\" channel\r\n - Look for error messages\r\n\r\n2. **Test the server locally:**\r\n ```bash\r\n # For installed package\r\n python -m mycobot_mcp\r\n \r\n # For development (from project root)\r\n cd D:\\AI\\mycobot-mcp\r\n set PYTHONPATH=src\r\n python -m mycobot_mcp\r\n ```\r\n\r\n3. **Common issues and solutions:**\r\n - **\"No module named 'mycobot_mcp'\"**: \r\n - For development: Ensure `PYTHONPATH` includes the `src` folder\r\n - For installed: Run `pip install -e .` from project root\r\n \r\n - **\"Tools not loading\"**:\r\n - Check that you're using `-m mycobot_mcp` not `-m mycobot_mcp.server`\r\n - Verify the `cwd` is set to project root in development mode\r\n \r\n - **Configuration tips:**\r\n - \u2705 Always use `-u` flag for unbuffered output\r\n - \u2705 Set `PYTHONPATH` to `src` folder (not `src/mycobot_mcp`)\r\n - \u2705 Use `cwd` to set working directory for development\r\n - \u274c Don't run `server.py` directly anymore\r\n\r\n## Safety Guidelines\r\n\r\n\u26a0\ufe0f **Important Safety Information:**\r\n\r\n1. Always ensure a clear workspace around the robot\r\n2. Keep hands and objects away from moving parts\r\n3. Use emergency stop if unexpected behavior occurs\r\n4. Start with slow speeds when testing new movements\r\n5. Never use massage demonstrations on humans\r\n6. Supervise pet interactions at all times\r\n\r\n## License\r\n\r\nThis MCP server is licensed under the MIT License. See LICENSE file for details.\r\n\r\n---\r\n\r\n<a name=\"chinese\"></a>\r\n## \u6982\u8ff0\r\n\r\nRobotArm MCP P340 \u662f\u4e00\u4e2a\u57fa\u4e8e\u6a21\u578b\u4e0a\u4e0b\u6587\u534f\u8bae\uff08MCP\uff09\u7684\u670d\u52a1\u5668\u5b9e\u73b0\uff0c\u4e3a\u5927\u8c61\u673a\u5668\u4eba MyCobot \u7cfb\u5217\u673a\u68b0\u81c2\u63d0\u4f9b\u81ea\u7136\u8bed\u8a00\u63a7\u5236\u529f\u80fd\uff08\u7279\u522b\u9488\u5bf9 ultraArmP340 \u8fdb\u884c\u4e86\u4f18\u5316\uff09\u3002\u901a\u8fc7\u5bf9\u8bdd\u5f0f AI \u63a7\u5236\u673a\u68b0\u81c2\uff0c\u8ba9\u673a\u5668\u4eba\u6280\u672f\u4eba\u4eba\u53ef\u7528\u3002\r\n\r\n## \u529f\u80fd\u7279\u70b9\r\n\r\n- \ud83e\udd16 \u652f\u6301\u591a\u79cd MyCobot \u578b\u53f7\uff08ultraArmP340\u3001MyCobot280\u3001MyCobot320\uff09\r\n- \ud83c\udfae \u901a\u8fc7 MCP \u534f\u8bae\u5b9e\u73b0\u81ea\u7136\u8bed\u8a00\u63a7\u5236\u673a\u68b0\u81c2\r\n- \ud83d\udd27 \u6a21\u62df\u6a21\u5f0f\u652f\u6301\u65e0\u786c\u4ef6\u5f00\u53d1\r\n- \ud83d\udee1\ufe0f \u5305\u542b\u7d27\u6025\u505c\u6b62\u7b49\u5b89\u5168\u529f\u80fd\r\n- \ud83d\udcca \u5b9e\u65f6\u72b6\u6001\u76d1\u63a7\r\n\r\n## \u7ec4\u4ef6\u8bf4\u660e\r\n\r\n### \u5de5\u5177\uff08Tools\uff09\r\n\r\n\u670d\u52a1\u5668\u63d0\u4f9b\u4ee5\u4e0b\u63a7\u5236\u5de5\u5177\uff1a\r\n\r\n#### \u8fde\u63a5\u7ba1\u7406\r\n- **connect_robot** - \u8fde\u63a5\u673a\u68b0\u81c2\r\n - \u8f93\u5165\uff1a`model`\uff08\u5b57\u7b26\u4e32\uff09\uff1a\u673a\u5668\u4eba\u578b\u53f7\r\n - \u8f93\u5165\uff1a`port`\uff08\u5b57\u7b26\u4e32\uff09\uff1a\u4e32\u53e3\u53f7\r\n - \u8fd4\u56de\uff1a\u8fde\u63a5\u72b6\u6001\r\n\r\n#### \u72b6\u6001\u76d1\u63a7\r\n- **get_robot_status** - \u83b7\u53d6\u673a\u5668\u4eba\u5f53\u524d\u72b6\u6001\r\n - \u8fd4\u56de\uff1a\u5f53\u524d\u89d2\u5ea6\u3001\u5750\u6807\u3001\u5939\u722a/\u5438\u6cf5\u72b6\u6001\u3001\u8fd0\u52a8\u72b6\u6001\r\n\r\n#### \u8fd0\u52a8\u63a7\u5236\r\n- **move_to_angles** - \u79fb\u52a8\u5173\u8282\u5230\u6307\u5b9a\u89d2\u5ea6\r\n - \u8f93\u5165\uff1a`angles`\uff08\u6570\u7ec4\uff09\uff1a\u5404\u5173\u8282\u76ee\u6807\u89d2\u5ea6\r\n - \u8f93\u5165\uff1a`speed`\uff08\u6574\u6570\uff09\uff1a\u8fd0\u52a8\u901f\u5ea6\r\n - \u8fd4\u56de\uff1a\u8fd0\u52a8\u786e\u8ba4\r\n\r\n- **move_to_coords** - \u79fb\u52a8\u5230\u6307\u5b9a\u5750\u6807\r\n - \u8f93\u5165\uff1a`coords`\uff08\u6570\u7ec4\uff09\uff1a\u76ee\u6807\u5750\u6807\r\n - \u8f93\u5165\uff1a`speed`\uff08\u6574\u6570\uff09\uff1a\u8fd0\u52a8\u901f\u5ea6\r\n - \u8fd4\u56de\uff1a\u8fd0\u52a8\u786e\u8ba4\r\n\r\n#### \u672b\u7aef\u6267\u884c\u5668\u63a7\u5236\r\n- **control_gripper** - \u63a7\u5236\u5939\u722a\u5f00\u5408\r\n- **control_pump** - \u63a7\u5236\u5438\u6cf5\u5f00\u5173\r\n\r\n#### \u7cfb\u7edf\u547d\u4ee4\r\n- **go_zero** - \u56de\u96f6\u4f4d\r\n- **emergency_stop** - \u7d27\u6025\u505c\u6b62\r\n\r\n#### \u9ad8\u7ea7\u8fd0\u52a8\u63a7\u5236\r\n- **execute_action_sequence** - \u6267\u884c\u81ea\u5b9a\u4e49\u52a8\u4f5c\u5e8f\u5217\r\n - \u8f93\u5165\uff1a`sequence_name`\uff08\u5b57\u7b26\u4e32\uff09\uff1a\u52a8\u4f5c\u5e8f\u5217\u7684\u63cf\u8ff0\u6027\u540d\u79f0\r\n - \u8f93\u5165\uff1a`actions`\uff08\u6570\u7ec4\uff09\uff1a\u52a8\u4f5c\u5217\u8868\uff0c\u6bcf\u4e2a\u52a8\u4f5c\u5305\u542b\uff1a\r\n - `type`\uff1a\u52a8\u4f5c\u7c7b\u578b\uff08\"angles\"\u3001\"coords\"\u3001\"gripper\"\u3001\"pump\"\u3001\"wait\"\uff09\r\n - `angles/coords`\uff1a\u76ee\u6807\u4f4d\u7f6e\uff08\u6839\u636e\u7c7b\u578b\uff09\r\n - `speed`\uff1a\u79fb\u52a8\u901f\u5ea6\uff08\u53ef\u9009\uff0c\u9ed8\u8ba450\uff09\r\n - `duration`\uff1a\u52a8\u4f5c\u6301\u7eed\u65f6\u95f4\uff08\u79d2\uff0c\u53ef\u9009\uff09\r\n - `gripper_action`\uff1a\"open\"\u6216\"close\"\uff08\u5939\u722a\u7c7b\u578b\uff09\r\n - `pump_action`\uff1a\"on\"\u6216\"off\"\uff08\u5438\u6cf5\u7c7b\u578b\uff09\r\n - \u8f93\u5165\uff1a`default_interval`\uff08\u6d6e\u70b9\u6570\uff09\uff1a\u52a8\u4f5c\u95f4\u9ed8\u8ba4\u95f4\u9694\uff08\u53ef\u9009\uff0c\u9ed8\u8ba40.5\u79d2\uff09\r\n - \u8fd4\u56de\uff1a\u6267\u884c\u72b6\u6001\u53ca\u5b8c\u6210\u7684\u52a8\u4f5c\u6570\r\n - \u6ce8\u610f\uff1a\u6b64\u5de5\u5177\u53ef\u5b9e\u73b0\u9017\u732b\u3001\u753b\u5706\u3001\u8df3\u821e\u7b49\u590d\u6742\u884c\u4e3a\uff0c\u901a\u8fc7\u52a8\u4f5c\u5e8f\u5217\u7ec4\u5408\u5b9e\u73b0\u5404\u79cd\u521b\u610f\u52a8\u4f5c\r\n\r\n\r\n### \u8d44\u6e90\uff08Resources\uff09\r\n\r\n- **status://current** - \u5b9e\u65f6\u673a\u5668\u4eba\u72b6\u6001\u4fe1\u606f\r\n\r\n### \u63d0\u793a\uff08Prompts\uff09\r\n\r\n- **robot_control_guide** - \u673a\u5668\u4eba\u63a7\u5236\u4ea4\u4e92\u6307\u5357\r\n - \u53c2\u6570\uff1a`task`\uff08\u4efb\u52a1\u7c7b\u578b\uff09\r\n - \u63d0\u4f9b\u5206\u6b65\u9aa4\u64cd\u4f5c\u6307\u5bfc\r\n\r\n- **design_action_sequence** - \u8bbe\u8ba1\u81ea\u5b9a\u4e49\u52a8\u4f5c\u5e8f\u5217\u7684\u6a21\u677f\r\n - \u53c2\u6570\uff1a\r\n - `task_description`\uff1a\u4efb\u52a1\u63cf\u8ff0\uff08\u5982\"\u8df3\u821e\"\u3001\"\u9017\u732b\"\u3001\"\u6309\u6469\"\u7b49\uff09\r\n - \u63d0\u4f9b\u7ed3\u6784\u5316\u7684\u52a8\u4f5c\u5e8f\u5217\u8bbe\u8ba1\u6307\u5bfc\r\n - \u5e2e\u52a9\u8bbe\u8ba1\u6d41\u7545\u8fde\u7eed\u7684\u52a8\u4f5c\u53ca\u5408\u7406\u7684\u65f6\u95f4\u5b89\u6392\r\n\r\n## \u5feb\u901f\u5f00\u59cb\r\n\r\n### \u5b89\u88c5\u914d\u7f6e\r\n\r\n1. \u786e\u4fdd\u5df2\u5b89\u88c5 Python 3.10\r\n2. \u5b89\u88c5\u4f9d\u8d56\uff1a\r\n```bash\r\npip install robotarm-mcp-p340\r\n```\r\n\r\n### Cursor \u914d\u7f6e\u65b9\u6cd5\r\n\r\n\u6709\u4e09\u79cd\u65b9\u6cd5\u5728 Cursor \u4e2d\u914d\u7f6e MCP\uff1a\r\n\r\n#### \u65b9\u6cd5 1\uff1aPython \u6a21\u5757\u914d\u7f6e\uff08\u63a8\u8350\u7528\u4e8e\u5df2\u5b89\u88c5\u7684\u5305\uff09\r\n\r\n\u5982\u679c\u60a8\u5df2\u901a\u8fc7 pip \u5b89\u88c5\u4e86\u5305\uff1a\r\n```json\r\n{\r\n \"mcpServers\": {\r\n \"mycobot\": {\r\n \"command\": \"python\",\r\n \"args\": [\"-u\", \"-m\", \"mycobot_mcp\"],\r\n \"env\": {\r\n \"SIMULATE\": \"1\"\r\n }\r\n }\r\n }\r\n}\r\n```\r\n\r\n#### \u65b9\u6cd5 2\uff1a\u5f00\u53d1\u914d\u7f6e\uff08\u7528\u4e8e\u4ece GitHub \u514b\u9686\u7684\u9879\u76ee\uff09\r\n\r\n\u5982\u679c\u60a8\u4ece GitHub \u514b\u9686\u5e76\u6b63\u5728\u5f00\u53d1\uff1a\r\n\r\n```json\r\n{\r\n \"mcpServers\": {\r\n \"mycobot\": {\r\n \"command\": \"python\",\r\n \"args\": [\r\n \"-u\",\r\n \"-m\",\r\n \"mycobot_mcp\"\r\n ],\r\n \"env\": {\r\n \"SIMULATE\": \"1\",\r\n \"PYTHONPATH\": \"\u586b\u5199 src \u6587\u4ef6\u5939\u7684\u7edd\u5bf9\u8def\u5f84\"\r\n },\r\n \"cwd\": \"\u586b\u5199\u9879\u76ee\u6839\u76ee\u5f55\u7684\u7edd\u5bf9\u8def\u5f84\"\r\n }\r\n }\r\n}\r\n\r\n\u793a\u4f8b\u5982\u4e0b\uff1a\r\n\r\n{\r\n \"mcpServers\": {\r\n \"mycobot\": {\r\n \"command\": \"D:\\\\Anaconda3\\\\envs\\\\mycobot-mcp\\\\python.exe\",\r\n \"args\": [\r\n \"-u\",\r\n \"-m\",\r\n \"mycobot_mcp\"\r\n ],\r\n \"env\": {\r\n \"SIMULATE\": \"1\",\r\n \"PYTHONPATH\": \"D:\\\\AI\\\\mycobot-mcp\\\\src\"\r\n },\r\n \"cwd\": \"D:\\\\AI\\\\mycobot-mcp\"\r\n }\r\n }\r\n}\r\n```\r\n\r\n**\u91cd\u8981\u8bf4\u660e\uff1a**\r\n- \"SIMULATE\": \"1\"\u4e3a\u65e0\u786c\u4ef6\u8bbe\u5907\u7684\u6a21\u62df\u6d4b\u8bd5\uff0c\u5b9e\u673a\u6d4b\u8bd5\u9700\u8981\u628aSIMULATE\u503c\u8bbe\u7f6e\u4e3a\"0\"\r\n- \u5fc5\u987b\u4f7f\u7528 `-u` \u53c2\u6570\u7981\u7528 Python \u8f93\u51fa\u7f13\u51b2\r\n- \u8bbe\u7f6e `PYTHONPATH` \u5305\u542b src \u76ee\u5f55\r\n- \u6839\u636e\u60a8\u7684\u5b89\u88c5\u8def\u5f84\u8c03\u6574\u8def\u5f84\r\n\r\n#### \u65b9\u6cd5 3\uff1a\u6279\u5904\u7406\u6587\u4ef6\u914d\u7f6e\uff08Windows\uff09\r\n\r\n1. \u521b\u5efa\u6279\u5904\u7406\u6587\u4ef6 `start_mcp_server.bat`\uff1a\r\n```batch\r\n@echo off\r\ncd /d D:\\AI\\mycobot-mcp\r\nset PYTHONPATH=D:\\AI\\mycobot-mcp\\src\r\nset SIMULATE=1\r\nD:\\Anaconda3\\envs\\mycobot-mcp\\python.exe -u -m mycobot_mcp\r\n```\r\n\r\n2. \u914d\u7f6e Cursor\uff1a\r\n```json\r\n{\r\n \"mcpServers\": {\r\n \"mycobot\": {\r\n \"command\": \"D:\\\\AI\\\\mycobot-mcp\\\\start_mcp_server.bat\"\r\n }\r\n }\r\n}\r\n```\r\n\r\n\r\n#### \u914d\u7f6e\u6b65\u9aa4\r\n\r\n1. \u6253\u5f00 Cursor \u8bbe\u7f6e\uff08Ctrl+,\uff09\r\n2. \u641c\u7d22 \"MCP\" \u6216 \"Model Context Protocol\"\r\n3. \u4f7f\u7528\u4e0a\u8ff0\u65b9\u6cd5\u4e4b\u4e00\u6dfb\u52a0\u914d\u7f6e\r\n4. \u91cd\u542f Cursor \u4f7f\u914d\u7f6e\u751f\u6548\r\n\r\n#### \u9a8c\u8bc1\u914d\u7f6e\r\n\r\n\u914d\u7f6e\u6210\u529f\u540e\uff0c\u60a8\u5e94\u8be5\u770b\u5230\uff1a\r\n- \u2705 MCP \u72b6\u6001\u663e\u793a \"9 tools enabled\"\r\n- \u2705 \u804a\u5929\u4e2d\u53ef\u7528\u5de5\u5177\uff1a`connect_robot`\u3001`get_robot_status` \u7b49\r\n\r\n### \u4f7f\u7528\u793a\u4f8b\r\n\r\n1. **\u8fde\u63a5\u673a\u5668\u4eba\uff1a**\r\n - \"\u8fde\u63a5\u6211\u7684 ultraArm P340 \u673a\u68b0\u81c2\"\r\n - \"\u521d\u59cb\u5316 COM3 \u7aef\u53e3\u7684\u673a\u5668\u4eba\"\uff08\u6839\u636e\u60a8\u8bbe\u5907\u7684\u5b9e\u9645 COM \u7aef\u53e3\u8c03\u6574\u6570\u5b57\uff0c\u9ed8\u8ba4\u662f 3\uff09\r\n\r\n2. **\u57fa\u7840\u8fd0\u52a8\uff1a**\r\n - \"\u79fb\u52a8\u673a\u68b0\u81c2\u5230\u4f4d\u7f6e [200, 0, 150]\"\r\n - \"\u8bbe\u7f6e\u5173\u8282\u89d2\u5ea6\u4e3a [45, 30, -20]\"\r\n - \"\u56de\u5230\u96f6\u4f4d\"\r\n\r\n3. **\u5939\u722a\u63a7\u5236\uff1a**\r\n - \"\u6253\u5f00\u5939\u722a\"\r\n - \"\u95ed\u5408\u5939\u722a\u6293\u53d6\u7269\u4f53\"\r\n - \"\u5f00\u542f\u5438\u6cf5\"\r\n\r\n4. **\u590d\u6742\u4efb\u52a1\uff1a**\r\n - \"\u7528\u673a\u68b0\u81c2\u9017\u732b\"\r\n - \"\u5728\u684c\u4e0a\u753b\u4e2a\u5706\"\r\n - \"\u6f14\u793a\u5982\u4f55\u5199\u6c49\u5b57\"\r\n - \"\u8ba9\u673a\u5668\u4eba\u8ddf\u7740\u97f3\u4e50\u8df3\u821e\"\r\n - \"\u521b\u5efa\u4e00\u4e2a\u81ea\u5b9a\u4e49\u7684\u6325\u624b\u52a8\u4f5c\u5e8f\u5217\"\r\n\r\n### \u5f00\u53d1\u6a21\u5f0f\r\n\r\n\u8bbe\u7f6e `SIMULATE=1` \u65e0\u9700\u786c\u4ef6\u6d4b\u8bd5\uff1a\r\n```bash\r\nexport SIMULATE=1 # Linux/Mac\r\nset SIMULATE=1 # Windows\r\n```\r\n\r\n### \u6545\u969c\u6392\u9664\r\n\r\n\u5982\u679c\u5de5\u5177\u52a0\u8f7d\u5931\u8d25\uff1a\r\n\r\n1. **\u68c0\u67e5 Cursor \u7684 MCP \u65e5\u5fd7\uff1a**\r\n - \u89c6\u56fe \u2192 \u8f93\u51fa \u2192 \u9009\u62e9 \"MCP\" \u901a\u9053\r\n - \u67e5\u770b\u9519\u8bef\u4fe1\u606f\r\n\r\n2. **\u672c\u5730\u6d4b\u8bd5\u670d\u52a1\u5668\uff1a**\r\n ```bash\r\n # \u5bf9\u4e8e\u5df2\u5b89\u88c5\u7684\u5305\r\n python -m mycobot_mcp\r\n \r\n # \u5bf9\u4e8e\u5f00\u53d1\u6a21\u5f0f\uff08\u4ece\u9879\u76ee\u6839\u76ee\u5f55\uff09\r\n cd D:\\AI\\mycobot-mcp\r\n set PYTHONPATH=src\r\n python -m mycobot_mcp\r\n ```\r\n\r\n3. **\u5e38\u89c1\u95ee\u9898\u548c\u89e3\u51b3\u65b9\u6848\uff1a**\r\n - **\"No module named 'mycobot_mcp'\"**\uff1a\r\n - \u5f00\u53d1\u6a21\u5f0f\uff1a\u786e\u4fdd `PYTHONPATH` \u5305\u542b `src` \u6587\u4ef6\u5939\r\n - \u5df2\u5b89\u88c5\uff1a\u4ece\u9879\u76ee\u6839\u76ee\u5f55\u8fd0\u884c `pip install -e .`\r\n \r\n - **\"\u5de5\u5177\u672a\u52a0\u8f7d\"**\uff1a\r\n - \u68c0\u67e5\u662f\u5426\u4f7f\u7528 `-m mycobot_mcp` \u800c\u4e0d\u662f `-m mycobot_mcp.server`\r\n - \u9a8c\u8bc1\u5f00\u53d1\u6a21\u5f0f\u4e0b `cwd` \u8bbe\u7f6e\u4e3a\u9879\u76ee\u6839\u76ee\u5f55\r\n \r\n - **\u914d\u7f6e\u63d0\u793a\uff1a**\r\n - \u2705 \u59cb\u7ec8\u4f7f\u7528 `-u` \u6807\u5fd7\u5b9e\u73b0\u65e0\u7f13\u51b2\u8f93\u51fa\r\n - \u2705 \u8bbe\u7f6e `PYTHONPATH` \u4e3a `src` \u6587\u4ef6\u5939\uff08\u800c\u4e0d\u662f `src/mycobot_mcp`\uff09\r\n - \u2705 \u4f7f\u7528 `cwd` \u4e3a\u5f00\u53d1\u8bbe\u7f6e\u5de5\u4f5c\u76ee\u5f55\r\n - \u274c \u4e0d\u8981\u518d\u76f4\u63a5\u8fd0\u884c `server.py`\r\n\r\n## \u5b89\u5168\u6307\u5357\r\n\r\n\u26a0\ufe0f **\u91cd\u8981\u5b89\u5168\u4fe1\u606f\uff1a**\r\n\r\n1. \u786e\u4fdd\u673a\u5668\u4eba\u5468\u56f4\u6709\u8db3\u591f\u7a7a\u95f4\r\n2. \u8fd0\u52a8\u65f6\u8fdc\u79bb\u673a\u68b0\u90e8\u4ef6\r\n3. \u51fa\u73b0\u5f02\u5e38\u7acb\u5373\u4f7f\u7528\u7d27\u6025\u505c\u6b62\r\n4. \u6d4b\u8bd5\u65b0\u52a8\u4f5c\u65f6\u4f7f\u7528\u4f4e\u901f\r\n5. \u6309\u6469\u6f14\u793a\u4ec5\u7528\u4e8e\u5c55\u793a\uff0c\u52ff\u7528\u4e8e\u771f\u4eba\r\n6. \u4e0e\u5ba0\u7269\u4e92\u52a8\u65f6\u5168\u7a0b\u76d1\u7763\r\n\r\n## \u8bb8\u53ef\u8bc1\r\n\r\n\u672c\u9879\u76ee\u91c7\u7528 MIT \u8bb8\u53ef\u8bc1\u3002\u8be6\u89c1 LICENSE \u6587\u4ef6\u3002 \r\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "MCP Server for controlling ElephantRobotics MyCobot robotic arms via natural language",
"version": "0.1.0",
"project_urls": {
"Documentation": "https://github.com/AI-FanGe/RobotArm-MCP-P340#readme",
"Homepage": "https://github.com/AI-FanGe/RobotArm-MCP-P340",
"Issues": "https://github.com/AI-FanGe/RobotArm-MCP-P340/issues",
"Repository": "https://github.com/AI-FanGe/RobotArm-MCP-P340.git"
},
"split_keywords": [
"mcp",
" mycobot",
" robotics",
" elephantrobotics",
" robot-arm"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "5751a24fd7634e8fc409c5fdc8445fa1ee34fd27d70d8f3254a4bf281bc8bfb4",
"md5": "29422655fb166ee2087a58678cf77860",
"sha256": "227fd19b128b1becd275987baff2d7c8a3fe68968362293507006870080c3117"
},
"downloads": -1,
"filename": "robotarm_mcp_p340-0.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "29422655fb166ee2087a58678cf77860",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 14478,
"upload_time": "2025-07-09T15:46:04",
"upload_time_iso_8601": "2025-07-09T15:46:04.165529Z",
"url": "https://files.pythonhosted.org/packages/57/51/a24fd7634e8fc409c5fdc8445fa1ee34fd27d70d8f3254a4bf281bc8bfb4/robotarm_mcp_p340-0.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27339a958b1b018d328912263037546d6bbf43f483f38fb68d7a67c27d2d37f8",
"md5": "c8c6415f8a498bb7cc449c89f5c92735",
"sha256": "cb9807e82b7087096c89d356dee6f0a5bd1dd66bb7bb889c3d07dd5311d51599"
},
"downloads": -1,
"filename": "robotarm_mcp_p340-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "c8c6415f8a498bb7cc449c89f5c92735",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 20688,
"upload_time": "2025-07-09T15:46:10",
"upload_time_iso_8601": "2025-07-09T15:46:10.806297Z",
"url": "https://files.pythonhosted.org/packages/27/33/9a958b1b018d328912263037546d6bbf43f483f38fb68d7a67c27d2d37f8/robotarm_mcp_p340-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-09 15:46:10",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "AI-FanGe",
"github_project": "RobotArm-MCP-P340#readme",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [
{
"name": "mcp",
"specs": [
[
">=",
"1.10.0"
]
]
},
{
"name": "pymycobot",
"specs": [
[
">=",
"3.9.0"
]
]
},
{
"name": "pyserial",
"specs": [
[
">=",
"3.5"
]
]
}
],
"lcname": "robotarm-mcp-p340"
}