AgentHubAgentHub

PromptGuard

MCP ServerMCP Registry官方收录

co.promptguard/security · v1.0.0

Scan prompts for injection attacks, redact PII, and audit LLM SDK usage from any MCP client

概览

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

安装

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

{
  "mcpServers": {
    "security": {
      "command": "uvx",
      "args": [
        "promptguard-mcp-server"
      ]
    }
  }
}

环境变量

PROMPTGUARD_API_KEY可选secret

PromptGuard API key (starts with pg_sk_test_ or pg_sk_prod_)

PROMPTGUARD_API_URL可选

API base URL for self-hosted deployments

PROMPTGUARD_API_KEY可选secret

PromptGuard API key (starts with pg_sk_test_ or pg_sk_prod_)

PROMPTGUARD_API_KEY可选secret

PromptGuard API key (starts with pg_sk_test_ or pg_sk_prod_)

相关资源

统一 Manifest

{
  "id": "co.promptguard/security",
  "type": "mcp-server",
  "version": "1.0.0",
  "displayName": "PromptGuard",
  "description": "Scan prompts for injection attacks, redact PII, and audit LLM SDK usage from any MCP client",
  "repository": {
    "url": "https://github.com/acebot712/promptguard",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "promptguard-mcp-server",
        "version": "1.0.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "PROMPTGUARD_API_KEY",
            "description": "PromptGuard API key (starts with pg_sk_test_ or pg_sk_prod_)",
            "isSecret": true
          },
          {
            "name": "PROMPTGUARD_API_URL",
            "description": "API base URL for self-hosted deployments"
          }
        ]
      },
      {
        "registryType": "npm",
        "identifier": "@promptguard/mcp-server",
        "version": "1.0.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "PROMPTGUARD_API_KEY",
            "description": "PromptGuard API key (starts with pg_sk_test_ or pg_sk_prod_)",
            "isSecret": true
          }
        ]
      },
      {
        "registryType": "oci",
        "identifier": "docker.io/abhijoysarkar/promptguard-mcp-server:1.0.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "PROMPTGUARD_API_KEY",
            "description": "PromptGuard API key (starts with pg_sk_test_ or pg_sk_prod_)",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "co.promptguard/security",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/co.promptguard%2Fsecurity/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
PromptGuard — MCP Server 安装与配置 · AgentHub