Skip to main content
Glama
g0t4

mcp-server-commands

by g0t4

runProcess 工具

runProcess 工具用于在宿主机上运行进程。有两种互斥的调用方式:

  1. command_line (字符串) — 通过系统的默认 shell 执行(就像在 bash/fish/pwsh 等中输入一样)。shell 的特性(如管道、重定向和变量扩展)均可使用。

  2. argv (字符串数组) — 直接执行可执行文件。argv[0] 是可执行文件,其余为参数。不进行 shell 解析。

你不能同时传递两者。该工具会根据你提供的参数推断是否使用 shell。

如果你希望模型在系统上使用特定的 shell,建议在系统提示词(system prompt)中列出它们。或者也可以放在工具说明中,尽管模型往往更关注系统提示词中的示例。

如果遇到问题,请告诉我!

Related MCP server: buildkite-mcp-server

工具

工具供 LLM 请求使用。Claude Sonnet 3.5 可以智能地使用 run_process。初步测试显示,Groq Desktop with MCPllama4 模型的效果也很不错。

目前,只有一个命令可以统领一切!

  • run_process - 运行命令,例如 hostnamels -alecho "hello world"

    • 以文本形式返回 STDOUTSTDERR

    • 可选的 stdin 参数意味着你的 LLM 可以

      • 通过 STDIN 将脚本传递给 fishbashzshpython 等命令

      • 使用 stdin 中的文本通过 cat >> foo/bar.txt 创建文件

[!WARNING] 请谨慎对待你要求此服务器运行的命令! 在 Claude Desktop 应用中,请使用 Approve Once(不要使用 Allow for This Chat),以便你可以审查每个命令;如果你不信任该命令,请使用 Deny。 权限由运行服务器的用户决定。 请勿使用 sudo 运行。

视频演示

提示词

提示词供用户包含在聊天记录中,例如通过 Zed 的斜杠命令(在其 AI 聊天面板中)

  • run_process - 生成带有命令输出的提示消息

  • 顺便说一下,这主要是一个学习练习……我认为这是一个用户请求的工具调用。换句话说,它是一个运行命令并将输出传递给模型的模板!

开发

安装依赖:

npm install

构建服务器:

npm run build

用于自动重新构建的开发模式:

npm run watch

安装

要与 Claude Desktop 一起使用,请添加服务器配置:

MacOS 上:~/Library/Application Support/Claude/claude_desktop_config.json Windows 上:%APPDATA%/Claude/claude_desktop_config.json

Groq Desktop (beta, macOS) 使用 ~/Library/Application Support/groq-desktop-app/settings.json

使用已发布的 npm 包

已发布到 npm,名称为 mcp-server-commands,使用此 工作流

{
  "mcpServers": {
    "mcp-server-commands": {
      "command": "npx",
      "args": ["mcp-server-commands"]
    }
  }
}

使用本地构建(仓库检出)

确保运行 npm run build

{
  "mcpServers": {
    "mcp-server-commands": {
      // works b/c of shebang in index.js
      "command": "/path/to/mcp-server-commands/build/index.js"
    }
  }
}

本地模型

  • 大多数模型经过训练,认为它们无法为你运行命令。

    • 有时,它们会毫不犹豫地使用工具……而有时,我必须诱导它们。

    • 使用系统提示词或提示词模板来指示它们应该遵循用户请求。包括在不进行二次确认的情况下使用 run_process

  • Ollama 是在本地运行模型(配合 Open-WebUI)的好方法

# NOTE: make sure to review variants and sizes, so the model fits in your VRAM to perform well!

# Probably the best so far is [OpenHands LM](https://www.all-hands.dev/blog/introducing-openhands-lm-32b----a-strong-open-coding-agent-model)
ollama pull https://huggingface.co/lmstudio-community/openhands-lm-32b-v0.1-GGUF

# https://ollama.com/library/devstral
ollama pull devstral

# Qwen2.5-Coder has tool use but you have to coax it
ollama pull qwen2.5-coder

HTTP / OpenAPI

该服务器使用 STDIO 传输实现。 对于 HTTP,请使用 mcpo 获取 OpenAPI 兼容的 Web 服务器接口。 这适用于 Open-WebUI

uvx mcpo --port 3010 --api-key "supersecret" -- npx mcp-server-commands

# uvx runs mcpo => mcpo run npx => npx runs mcp-server-commands
# then, mcpo bridges STDIO <=> HTTP

[!WARNING] 我曾短暂地将 mcpoopen-webui 一起使用,请务必审查其安全隐患。

日志记录

Claude Desktop 应用将日志写入 ~/Library/Logs/Claude/mcp-server-mcp-server-commands.log

默认情况下,仅记录重要消息(即错误)。 如果你想查看更多消息,请在配置服务器时向 args 添加 --verbose

顺便说一下,日志被写入 STDERR,因为这是 Claude Desktop 路由到日志文件的内容。 将来,我期望格式良好的日志消息能够通过 STDIO 传输写入 MCP 客户端(注意:不是 Claude Desktop 应用)。

调试

由于 MCP 服务器通过 stdio 进行通信,调试可能具有挑战性。我们建议使用 MCP Inspector,它作为包脚本提供:

npm run inspector

Inspector 将提供一个 URL,用于在浏览器中访问调试工具。

Install Server
A
license - permissive license
B
quality
B
maintenance

Maintenance

Maintainers
Response time
2moRelease cycle
4Releases (12mo)
Commit activity
Issues opened vs closed

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • An MCP server for deep research or task groups

  • MCP server for doc2mcp documentation, generated by doc2mcp.

  • MCP server for skill documentation, generated by doc2mcp.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/g0t4/mcp-server-commands'

If you have feedback or need assistance with the MCP directory API, please join our Discord server