AgentHubAgentHub

blackwall

MCP ServerMCP Registry官方收录

com.blackwalltier/blackwall · v1.1.1

Pre-action risk gate: AI agents call before any irreversible action (money, SQL, delete).

概览

blackwall 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "blackwall": {
      "command": "npx",
      "args": [
        "-y",
        "blackwall-mcp"
      ],
      "env": {
        "BLACKWALL_API_KEY": "<BLACKWALL_API_KEY>"
      }
    }
  }
}

环境变量

BLACKWALL_API_KEY必填secret

Your BLACK_WALL API key (bw_live_…) from https://blackwalltier.com/dashboard/keys

BLACKWALL_MODE可选

observe (log only, never block) or enforce (default).

相关资源

统一 Manifest

{
  "id": "com.blackwalltier/blackwall",
  "type": "mcp-server",
  "version": "1.1.1",
  "displayName": "blackwall",
  "description": "Pre-action risk gate: AI agents call before any irreversible action (money, SQL, delete).",
  "repository": {
    "url": "https://github.com/bluetieroperations-create/blackwall-mcp",
    "source": "github"
  },
  "homepage": "https://blackwalltier.com",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "blackwall-mcp",
        "version": "1.1.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "BLACKWALL_API_KEY",
            "description": "Your BLACK_WALL API key (bw_live_…) from https://blackwalltier.com/dashboard/keys",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "BLACKWALL_MODE",
            "description": "observe (log only, never block) or enforce (default)."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "com.blackwalltier/blackwall",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/com.blackwalltier%2Fblackwall/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
blackwall — MCP Server 安装与配置 · AgentHub