MCP超级终端
MCP 服务配置
复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用
{
"mcpServers": {
"MCPHyperTerminal": {
"args": [
"-y",
"@mcpshell/command"
],
"command": "npx",
"timeout": 10000,
"type": "stdio"
}
}
}
可用工具 (1 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
run-command 1 个参数 需填 1 项
Use this tool when the user requests to "run a command", "execute in terminal", "check system info", "start a program", or any phrasing indicating shell interaction. Execute a terminal (shell) command on the host system or inside a containerized/sandboxed environment. This tool accepts a single-line or multi-line shell command as input, runs it in a controlled execution context (e.g. Linux shell), and returns both the standard output and error. It supports commands like ls, cat, top, npm run, or any available binary in the environment. Use this tool when the user explicitly wants to "run", "execute", or "invoke" a command-line instruction.
必填参数:command
服务介绍
MCP超级终端
MCP超级终端 是一款专为 AI IDE 开发场景设计的终端扩展工具。
它解决了 AI IDE 在调用外部工具时的不足,支持执行命令、Git 操作、自定义命令,几乎可以运行任何终端脚本。
目前支持 macOS 和 Linux 用户。
✨ 特性
- 🔧 命令执行:在 IDE 内部直接运行终端命令
- 🌀 Git 集成:支持常见 Git 操作(提交、拉取、推送等)
- ⚙️ 自定义命令:自由配置快捷命令,满足个性化需求
- 📜 脚本执行:可运行任何 Shell / Bash 脚本
- 🖥️ 跨平台:支持 macOS 和 Linux
🚀 使用场景
- AI IDE 开发过程中快速调用外部工具
- 在不离开编辑器的情况下执行 Git 工作流
- 自动化执行项目脚本(构建、测试、部署)
- 替代 IDE 内置但受限的终端调用能力
⚙️ 配置 MCP 服务
在 IDE 的配置文件中加入以下内容,即可启用 MCP超级终端:
{
"mcpServers": {
"MCPHyperTerminal": {
"timeout": 10000,
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mcpshell/command"
]
}
}
}