Use this if
優先 AI プロバイダーと MCP クライアントを接続して、チームが支援型トリアージと安全なレビュー ワークフローを実行できるようにします。
優先 AI プロバイダーと MCP クライアントを接続して、チームが支援型トリアージと安全なレビュー ワークフローを実行できるようにします。 対象: セキュリティプラットフォーム管理者および統合エンジニア. 一般的な設定時間: 20-30 分.
優先 AI プロバイダーと MCP クライアントを接続して、チームが支援型トリアージと安全なレビュー ワークフローを実行できるようにします。
ステップ 1
モデル プロバイダーのシークレットを独自のシークレット マネージャーに保持し、BlackShield 構成から参照します。
What success looks like
チームが使用する予定の AI タスクのみを有効にします。
ステップ 2
高価値のワークフローから開始し、本番環境の決定について人間によるレビューを実施します。
What success looks like
リスク ポリシーに合わせてモデル、トークン、タイムアウト、および温度の制限を設定します。
ステップ 3
モデル推論を制御下に置きながら、BlackShield ツールを呼び出すように MCP クライアントを構成する。
What success looks like
プロバイダー キーを独自のランタイムに保持し、本番環境には人間の承認が必要です変更。
Demonstration only
This configuration is designed for ease of use. To deploy scanner clients at scale, please plan your deployment architecture accordingly or contact us for enterprise best practices.
curl -X POST https://api.blackshield.chaplau.com/api/v1/ai-gateway/oauth/token \
-H "Content-Type: application/json" \
-d '{
"grant_type": "client_credentials",
"client_id": "your-client-id",
"client_secret": "your-client-secret"
}'curl -X POST https://api.blackshield.chaplau.com/api/v1/ai-gateway/openai/v1/chat/completions \
-H "Authorization: Bearer <your_short_lived_token>" \
-H "Content-Type: application/json" \
-d '{
"provider": "openai",
"model": "gpt-4o-mini",
"messages": [
{
"role": "user",
"content": "List the security requirements for the tenant onboarding flow."
}
]
}'{
"mcpServers": {
"blackshield-gateway": {
"command": "blackshield-mcp",
"args": [
"--client-id", "<your-client-id>",
"--client-secret", "<your-client-secret>",
"--url", "https://api.blackshield.chaplau.com/api/v1/mcp"
]
}
}
}