MCP Catalogs
首页

loopin-mcp

by nicholasemccormick·0·综合分 36

LoopIn 是一个 MCP 服务器,为 AI 代理提供人在循环中的中断 API,可在关键决策点请求人工审核。

ai-llmdeveloper-toolsproductivity
0
Forks
0
活跃 Issue
1 个月前
最近提交
2 天前
收录于

概述

LoopIn 允许 AI 代理在关键决策点暂停,请求人工审核,并根据人类决定恢复执行。它提供 REST API 端点来创建中断、轮询状态、提交决策和查看分析数据。MCP 服务器将此 API 包装为与 Claude Desktop 和其他 MCP 客户端兼容的工具。

试试问 AI

装完之后,这里有 5 个你可以让 AI 做的事:

:AI 代理在执行财务交易前寻求人类批准
:自主系统对潜在风险操作要求人工审核
:团队在自动化决策工作流程中实施人工监督
:MCP 服务器如何与 LoopIn API 通信?
:多个代理可以使用同一个 LoopIn 实例吗?

什么时候选它

当构建需要在关键决策点进行人工监督的 AI 代理时,特别是涉及财务交易或系统操作时,选择 LoopIn。

什么时候不要选它

如果您需要多个人的实时协作决策,或者需要超出简单批准/拒绝的工作流集成,请避免使用 LoopIn。

此 server 暴露的工具

从 README 抽取出 6 个工具
  • create_interrupt

    Agent creates a new interrupt request

  • get_interrupt_status

    Agent polls for a decision

  • list_pending_interrupts

    Human sees what needs review

  • decide_interrupt

    Human approves or rejects an interrupt

  • cancel_interrupt

    Agent cancels a pending request

  • get_interrupt_analytics

    Usage statistics for interrupts

可对比工具

humanloop-mcpapproval-flow-mcpcustom-shell-mcprest-api-tools

安装

通过 npm 安装 LoopIn MCP 服务器:

npm install -g @colossal-api/loopin-mcp

在 Claude Desktop 中配置:

{
  "mcpServers": {
    "loopin": {
      "command": "npx",
      "args": ["-y", "@colossal-api/loopin-mcp"],
      "env": {
        "LOOPIN_API_URL": "https://your-loopin-instance.railway.app",
        "LOOPIN_API_KEY": "your-key"
      }
    }
  }
}

FAQ

MCP 服务器如何与 LoopIn API 通信?
MCP 服务器作为 LoopIn REST API 的包装器,将其端点作为 MCP 工具暴露,AI 代理可以直接调用。
多个代理可以使用同一个 LoopIn 实例吗?
是的,每个代理请求都包含 agentId 来区分使用同一 LoopIn 服务的不同代理。

loopin-mcp 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。