Skip to main content
Glama
Jordan-Jarvis

Build Unblocker MCP

构建 Unblocker MCP

用于 Cursor IDE 的模型上下文协议 (MCP) 服务器,用于终止挂起的 Windows 构建可执行文件。

特征

  • 监视指定的构建过程( cl.exelink.exemsbuild.exe等)

  • 终止空闲的进程(CPU 使用率低于 1%),空闲时间可配置(默认 90 秒)

  • 为 Cursor IDE 提供工具( unblock_build )来触发解除阻塞过程

Related MCP server: stdout-mcp-server

安装

  1. 确保您已安装 Python 3.11 或更高版本。

  2. 使用 pipx 安装(推荐用于 CLI 工具):

    pipx install .

    或者使用 pip:

    pip install .

光标集成

将以下内容添加到您的 Cursor IDE 设置( settings.json )中:

{
  "mcpServers": {
    "build-unblocker": {
      "command": "unblock-build-mcp"
    }
  }
}

本地烟雾测试

您可以手动运行该工具来测试它(使用--dry-run来避免终止进程):

pipx run unblock-build-mcp --idle-seconds 5 --dry-run

持续集成

CI 状态 (将your-github-username替换为您的实际 GitHub 用户名,将build-unblocker-mcp替换为您的存储库名称)

执照

本项目遵循 MIT 许可证。详情请参阅LICENSE文件。

Available Tools

1 tool
unblock_buildC

Kill build executables idle > idle_seconds.

ParametersJSON Schema
NameRequiredDescriptionDefault
dry_runNo
idle_secondsNo
process_namesNo

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It mentions 'Kill' which implies a destructive action, but doesn't specify permissions needed, side effects (e.g., data loss), error handling, or rate limits. This leaves significant gaps for a tool that terminates processes.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste—it directly states the tool's action and condition. It's appropriately sized and front-loaded, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (destructive action with 3 parameters), no annotations, and no output schema, the description is inadequate. It doesn't cover return values, error cases, or detailed behavioral traits, leaving the agent with insufficient information for safe and effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It references 'idle_seconds' but doesn't explain the other parameters (dry_run, process_names) or provide additional context beyond the schema's titles. The description adds minimal value, barely meeting the baseline for low coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Kill') and target ('build executables idle > idle_seconds'), providing a specific verb+resource combination. However, without sibling tools for comparison, it cannot demonstrate differentiation from alternatives, though it's not vague or tautological.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when build executables are idle beyond a threshold, but provides no explicit guidance on when to use this tool versus alternatives, prerequisites, or exclusions. It lacks context for decision-making in a broader workflow.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool updatev1.0.0
    • First observedunblock_build

TDQS

B3.1/5.0

Scored across 1 tool

Disambiguation5/5

With only one tool, there is no possibility of ambiguity or overlap between tools, as there are no other tools to confuse it with. The tool's purpose is clearly defined to kill idle build executables, making it distinct by default.

Naming Consistency5/5

Since there is only one tool, it inherently follows a consistent naming pattern with no deviations to evaluate. The tool name 'unblock_build' uses a verb_noun format, which is clear and predictable in isolation.

Tool Count2/5

A single tool is too few for a server named 'Build Unblocker MCP', which suggests a broader scope related to managing or troubleshooting builds. This minimal set likely leaves significant gaps in functionality, such as monitoring build status or handling other build-related issues.

Completeness2/5

The tool surface is severely incomplete for the implied domain of build management. While 'unblock_build' addresses killing idle executables, there are obvious gaps like checking build health, restarting builds, or logging build errors, which are essential for comprehensive build unblocking workflows.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers