Connect your AI assistant directly to your software supply chain security data — query vulnerabilities, SBOMs, findings, and compliance, and run scans in plain language.
https://mcp.safeguard.sh/mcp
Claude.ai supports MCP servers via OAuth 2.0. Safeguard implements the full OAuth 2.0 Authorization Code Flow with PKCE — Claude will guide you through the login automatically.
https://mcp.safeguard.sh/mcpAdd this to your claude_desktop_config.json. Replace YOUR_API_KEY_HERE with your key from app.safeguard.sh.
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Run the server locally via npx. No HTTP server needed — the server communicates via stdin/stdout.
{
"mcpServers": {
"safeguard": {
"command": "npx",
"args": [
"-y",
"@safeguard/mcp-server",
"--transport",
"stdio"
],
"env": {
"SAFEGUARD_API_KEY": "YOUR_API_KEY_HERE",
"SAFEGUARD_AUTH_MODE": "apikey"
}
}
}
}
ChatGPT supports MCP servers natively. It auto-discovers OAuth via /.well-known/oauth-authorization-server and registers itself automatically (RFC 7591).
https://mcp.safeguard.sh/mcpⓘ ChatGPT calls POST /register automatically — no manual client ID setup needed.
Option A — Gemini CLI (recommended for developers). Add to ~/.gemini/settings.json:
{
"mcpServers": {
"safeguard": {
"httpUrl": "https://mcp.safeguard.sh/mcp",
"timeout": 30000,
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Option B — Google AI Studio (web). Uses the same OAuth flow as ChatGPT:
https://mcp.safeguard.sh/mcp and follow the OAuth login prompt.Cursor has native MCP support. Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per-project):
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Or via Cursor UI: Settings → MCP → Add Server → paste the URL above.
Download ready-made Cursor config → | Get your API key at app.safeguard.sh/settings/api-keys
Use Safeguard with Google Vertex AI agents and the Vertex AI Agent Builder on cloud.google.com.
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
For Vertex AI Agent Builder: add this as an external tool in your agent configuration. For Vertex AI extensions, use the OpenAPI spec at https://mcp.safeguard.sh/openapi.json.
Download Vertex AI config → | Get your API key at app.safeguard.sh/settings/api-keys
Google NotebookLM supports MCP tool integrations to augment research with live security data.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.Microsoft Copilot at bing.com/copilot and copilot.microsoft.com supports MCP servers.
https://mcp.safeguard.sh/mcp and sign in with Safeguard.Use Safeguard with Azure AI agents and Azure OpenAI via ai.azure.com (Azure AI Foundry).
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
For Azure AI Foundry agents: add as an MCP tool server in your agent's tool configuration. For Azure OpenAI Assistants: use the OpenAPI spec at https://mcp.safeguard.sh/openapi.json.
Download Azure config → | Get your API key at app.safeguard.sh/settings/api-keys
Use Safeguard with Meta's Llama models via llama.meta.com and Llama API integrations.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.Perplexity supports MCP servers natively via OAuth 2.0. Connect directly from your Perplexity settings.
https://mcp.safeguard.sh/mcpDownload config → | Get your API key at app.safeguard.sh/settings/api-keys
Grok supports MCP servers on grok.com. Connect via the integrations panel.
https://mcp.safeguard.sh/mcpGitHub Copilot in VS Code supports MCP servers. Add to your VS Code settings.json or workspace MCP config.
{
"servers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Or add to .vscode/mcp.json in your project root. Replace YOUR_API_KEY_HERE with your key from app.safeguard.sh.
Meta AI supports MCP connections via meta.ai and Meta AI Studio integrations.
https://mcp.safeguard.sh/mcpManus is an AI agent platform with native MCP support. Connect Safeguard to give Manus access to your security data.
https://mcp.safeguard.sh/mcpDownload config → | Get your API key at app.safeguard.sh/settings/api-keys
Mistral's Le Chat supports MCP via OAuth. Connect directly from Le Chat settings.
https://mcp.safeguard.sh/mcpCohere's Coral assistant supports MCP tool connections.
https://mcp.safeguard.sh/mcpAleph Alpha supports MCP integrations from app.aleph-alpha.com.
https://mcp.safeguard.sh/mcp and authenticate.DeepSeek's web assistant supports MCP tool integrations.
https://mcp.safeguard.sh/mcpWindsurf IDE has built-in MCP support. Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"safeguard": {
"serverUrl": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Or via Windsurf UI: Settings → MCP → Add Server → paste the URL above.
Download ready-made Windsurf config → | Get your API key at app.safeguard.sh/settings/api-keys
Use Safeguard tools with Groq's ultra-fast inference. Add to your Groq agent configuration:
{
"mcpServers": {
"safeguard": {
"httpUrl": "https://mcp.safeguard.sh/mcp",
"timeout": 30000,
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Download ready-made Groq config → | Get your API key at app.safeguard.sh/settings/api-keys
Use Safeguard with Together AI's open-source model fleet. Add to your Together agent config:
{
"mcpServers": {
"safeguard": {
"httpUrl": "https://mcp.safeguard.sh/mcp",
"timeout": 30000,
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Download ready-made Together config → | Get your API key at app.safeguard.sh/settings/api-keys
Use Safeguard with Amazon Bedrock agents and Amazon Q for security workflows.
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
For Amazon Bedrock Agents: add this server config to your agent's action group. For Amazon Q in the IDE: add to your MCP configuration file.
Download Bedrock config → | Get your API key at app.safeguard.sh/settings/api-keys
Use Safeguard security tools with NVIDIA NIM agents and the build.nvidia.com platform.
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Download NVIDIA NIM config → | Get your API key at app.safeguard.sh/settings/api-keys
AI21 Labs supports MCP tool integrations from studio.ai21.com.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.Inflection's Pi assistant supports MCP tool connections for enhanced capabilities.
https://mcp.safeguard.sh/mcp and sign in with Safeguard.Writer's enterprise AI platform supports MCP tool integrations for security-aware content workflows.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.Kimi by Moonshot AI supports MCP integrations for tool-augmented conversations.
https://mcp.safeguard.sh/mcp and sign in with Safeguard.Use Safeguard with Hugging Face Chat and Hugging Face Agents via MCP.
https://mcp.safeguard.sh/mcp and authorize.Zhipu AI's ChatGLM supports MCP tool integrations.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.Baidu's ERNIE Bot supports MCP tool integrations via yiyan.baidu.com.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.Salesforce Agentforce supports MCP tool servers natively. Connect Safeguard to give your agents live security data from your projects.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.IBM watsonx.ai supports MCP tool integrations for enterprise AI agents and workflows.
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Download watsonx config → | Get your API key at app.safeguard.sh/settings/api-keys
Use Safeguard with Databricks AI agents and Mosaic AI model serving.
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Download Databricks config → | Get your API key at app.safeguard.sh/settings/api-keys
Use Safeguard with Snowflake Cortex AI and Arctic model integrations from app.snowflake.com.
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Zapier's AI automation platform supports MCP servers. Connect Safeguard to trigger security workflows across 7,000+ apps.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.n8n's workflow automation platform has native MCP node support. Add Safeguard as an MCP tool server.
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Or via n8n UI: add an MCP Client node, set URL to https://mcp.safeguard.sh/mcp, add Bearer auth header.
Dify's LLM app platform supports MCP tool servers via its connector marketplace at cloud.dify.ai.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.Poe by Quora supports MCP-connected bots. Add Safeguard as a server-side bot tool.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.Character.AI supports MCP tool integrations for character creators building security-aware AI personas.
https://mcp.safeguard.sh/mcp and authorize.Amazon Q (AWS's AI assistant) supports MCP tool integrations in the IDE and in Q Business.
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
For Amazon Q Developer in the IDE: add to your MCP config file. For Q Business: add as an external tool plugin.
Use Safeguard with Fireworks AI's fast inference and model playground at fireworks.ai.
{
"mcpServers": {
"safeguard": {
"httpUrl": "https://mcp.safeguard.sh/mcp",
"timeout": 30000,
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Use Safeguard with Replicate's model directory and prediction API at replicate.com.
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Use Safeguard with Anyscale's open-source model endpoints and Ray-based AI agents.
{
"mcpServers": {
"safeguard": {
"httpUrl": "https://mcp.safeguard.sh/mcp",
"timeout": 30000,
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Use Safeguard with Modal's serverless cloud AI workloads and function deployments.
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Replit's AI coding platform supports MCP servers. Connect Safeguard to scan and analyze code security inline.
https://mcp.safeguard.sh/mcp and authorize.Sourcegraph Cody supports MCP tool servers for enhanced code security context. Add to your Cody config:
{
"mcpServers": {
"safeguard": {
"url": "https://mcp.safeguard.sh/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Download Cody config → | Get your API key at app.safeguard.sh/settings/api-keys
Cline (VS Code extension) has first-class MCP support. Add Safeguard from the Cline MCP panel.
https://mcp.safeguard.sh/mcp with your API key as Bearer token.Alibaba's Qwen / Tongyi Qianwen supports MCP tool integrations at tongyi.aliyun.com.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.ByteDance's Doubao AI assistant supports MCP tool integrations at doubao.com.
https://mcp.safeguard.sh/mcp and authorize.01.AI's Yi models support MCP tool connections via the developer platform at 01.ai.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.Tencent Hunyuan supports MCP tool integrations at hunyuan.tencent.com.
https://mcp.safeguard.sh/mcp and authorize.MiniMax supports MCP tool integrations at hailuoai.com and minimax.chat.
https://mcp.safeguard.sh/mcp and authorize.Baichuan AI supports MCP tool integrations at ying.baichuan-ai.com.
https://mcp.safeguard.sh/mcp and authorize.Reka AI supports MCP tool integrations at chat.reka.ai.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.Continue.dev is an open-source AI code assistant with MCP support. Add to ~/.continue/config.json:
{
"mcpServers": [
{
"name": "safeguard",
"transport": {
"type": "streamableHttp",
"url": "https://mcp.safeguard.sh/mcp",
"requestOptions": {
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
]
}
Download ready-made Continue.dev config → | Get your API key at app.safeguard.sh/settings/api-keys
Stability AI supports MCP tool integrations at platform.stability.ai.
https://mcp.safeguard.sh/mcp and authorize with your Safeguard credentials.ElevenLabs supports MCP tool integrations at elevenlabs.io.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Runway ML supports MCP tool integrations at runwayml.com.
https://mcp.safeguard.sh/mcp and authorize with Safeguard.Luma AI supports MCP tool integrations at lumalabs.ai.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Midjourney supports MCP tool integrations at midjourney.com.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Suno supports MCP tool integrations at suno.ai.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Adobe Firefly / Adobe AI supports MCP tool integrations at firefly.adobe.com.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Apple Intelligence supports MCP tool integrations via the Apple Intelligence platform.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Cerebras inference platform supports MCP tool integrations at cloud.cerebras.ai.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.SambaNova Cloud supports MCP tool integrations at cloud.sambanova.ai.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Lambda Labs cloud platform supports MCP tool integrations at cloud.lambdalabs.com.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Lepton AI supports MCP tool integrations at lepton.ai.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Baseten ML deployment platform supports MCP tool integrations at baseten.co.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Allen Institute for AI supports MCP tool integrations via their OLMo platform at allenai.org.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Ideogram AI supports MCP tool integrations at ideogram.ai.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.RunPod cloud GPU platform supports MCP tool integrations at runpod.io.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Adept AI supports MCP tool integrations at adept.ai.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Technology Innovation Institute (TII) Falcon supports MCP tool integrations at falconllm.tii.ae.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.G42 / Jais AI (UAE) supports MCP tool integrations at ai.g42.ai.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Naver HyperCLOVA X supports MCP tool integrations at clova.ai.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Kakao KoGPT / KakaoTalk AI supports MCP tool integrations at kakao.com.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.LG AI Research EXAONE supports MCP tool integrations at lgresearch.ai.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.NTT tsuzumi LLM supports MCP tool integrations at ntt.com.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.CyberAgent CyberAgentLM supports MCP tool integrations at cyberagent.co.jp.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Sarvam AI (India) supports MCP tool integrations at sarvam.ai.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Krutrim (Ola) AI (India) supports MCP tool integrations at krutrim.com.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.iFlytek Spark cognitive model supports MCP tool integrations at xinghuo.xfyun.cn.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.SenseTime SenseNova supports MCP tool integrations at chat.sensetime.com.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Huawei PanGu AI supports MCP tool integrations at huaweicloud.com.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.StepFun (阶跃星辰) supports MCP tool integrations at stepfun.com.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Tiangong AI (天工) by Kunlun Tech supports MCP tool integrations at tiangong.cn.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.360 AI (奇虎 360) supports MCP tool integrations at ai.360.cn.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.Kling AI (快手) supports MCP tool integrations at klingai.com.
https://mcp.safeguard.sh/mcp and add your Safeguard API key.