easy-ui-mcp

Agent settings that define actions before and after tools are used, such as writing files, starting agents or running shell commands. They connect these events to project scripts for task tracking, review status and memory updates.

In plain words
What is it for?
Registering new task guides, moving finished work to review, updating project memory after Git operations, and enforcing checks before agents or shell commands run.
Why use it?
They automate project checks and bookkeeping around common agent actions. They can also stop an agent from starting when required task documentation is missing.

Settings file for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add settings/thunderkds/easy-ui-mcp/settings
Clone the repo
git clone --depth 1 https://github.com/thunderkds/easy-ui-mcp

Made for: Claude Code.

Per session not measured What this adds to a session before it is invoked.
When invoked not measured Not applicable: nothing here is loaded into a session.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Security

Grade A, and why

easy-ui-mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/settings.json · 73 lines

What it actually says

{
  "worktree": {
    "baseRef": "head"
  },
  "hooks": {
    "PostToolUse": [
      {
        "description": "Auto-register new TASK_GUIDE files in PROJECT_KANBAN.md",
        "matcher": "Write",
        "hooks": [
          {
            "type": "command",
            "command": "python3 \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/post_write_register_task.py"
          }
        ]
      },
      {
        "description": "Move task to Ready for Review after agent finishes",
        "matcher": "Agent",
        "hooks": [
          {
            "type": "command",
            "command": "python3 \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/post_agent_move_to_review.py"
          }
        ]
      },
      {
        "description": "Prompt Supervisor to run diff-driven memory-update pass after git push/merge/pull",
        "matcher": "Bash",
        "hooks": [
          {
            "type": "command",
            "command": "python3 \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/post_bash_memory_update.py"
          }
        ]
      }
    ],
    "PreToolUse": [
      {
        "description": "Block agent spawn if TASK_GUIDE is missing",
        "matcher": "Agent",
        "hooks": [
          {
            "type": "command",
            "command": "python3 \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/pre_agent_validate_guide.py"
          }
        ]
      },
      {
        "description": "Block git push/merge if pipeline gates are not satisfied",
        "matcher": "Bash",
        "hooks": [
          {
            "type": "command",
            "command": "python3 \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/pre_bash_block_unsafe_merge.py"
          }
        ]
      }
    ],
    "Stop": [
      {
        "description": "Remind Supervisor to run Stage 4 review for pending tasks",
        "hooks": [
          {
            "type": "command",
            "command": "python3 \"$CLAUDE_PROJECT_DIR\"/.claude/hooks/stop_review_reminder.py"
          }
        ]
      }
    ]
  }
}
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 73 lines scan A 52f9f27b0f2e

Subscribe to this mod's changes

easy-ui-mcp is a settings file published in the GitHub repository thunderkds/easy-ui-mcp (0 stars, last pushed 6d ago), licensed MIT. Its token cost is not measured: this kind of file is read by the harness, not the model. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.