Parallels RAS MCP服务器(Python)
此MCP服务器提供了一个REST API后端,用于与Parallels远程应用程序服务器(RAS)交互,以进行会话管理和应用程序发布。
特性
- 通过RAS REST API列出当前会话
- 发布远程应用程序
- 用于与MCP服务器集成的简单客户端库
- 基于FastAPI的后端
设置
- 克隆存储库:
git clone https://github.com/kamalsrini17/parallels-ras-mcp-server.git
cd parallels-ras-mcp-server- 安装依赖项:
pip install -r requirements.txt- 在中设置环境变量
.env:
RAS_API_URL=https://your-ras-server/ras/api
RAS_USERNAME=your-username
RAS_PASSWORD=your-password- 运行服务器:
bash run.sh客户端使用情况
from client_library.ras_mcp_client import RASMCPClient
client = RASMCPClient("http://localhost:8000")
print(client.get_sessions())
response = client.publish_application(
app_name="Notepad",
target_path="C:\\Windows\\System32\\notepad.exe"
)
print(response)提交给MCP
将您的MCP服务器提交至 https://mcp.so/submit
许可证
MIT许可证
