GuardEntry MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GuardEntry MCP ServerEvaluate: update user role to admin"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GuardEntry MCP Server
Model Context Protocol (MCP) server for GuardEntry — exposes the Agent Policy Router (APR) as MCP tools so any MCP-compatible AI agent can gate its actions through your compliance policy before executing them.
Transports
Transport | Entry point | Use with |
Streamable HTTP |
| CrewAI, LangChain, any HTTP MCP client |
stdio |
| Claude Desktop, Cursor, VS Code Cline |
Related MCP server: Enterprise MCP Gateway and Tool Registry
Quick start
git clone https://github.com/guardentryai/mcp-server.git
cd mcp-server
npm installCreate a .env file (copy from .env.example):
GUARDENTRY_API_KEY=ge_k1_your_key_here
# GUARDENTRY_BASE_URL=https://app.guardentry.ai # default
# MCP_PORT=3001 # default (HTTP mode only)
# MCP_TOOLS=guardentry_evaluate_action # optional tool allowlistGet an API key at app.guardentry.ai → Settings → API Keys.
HTTP mode (CrewAI, LangChain, etc.)
npm run start:http
# GuardEntry APR MCP server listening on http://localhost:3001/mcp
# Health: http://localhost:3001/healthstdio mode (Claude Desktop, Cursor)
npm startClaude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"guardentry": {
"command": "npx",
"args": ["--yes", "guardentry-mcp"],
"env": { "GUARDENTRY_API_KEY": "ge_k1_your_key_here" }
}
}
}Available tools
Tool | Description |
| Evaluate a proposed action — returns |
| Natural language interface to GuardEntry |
| Query the risk register |
| Get framework readiness (SOC 2, ISO 27001, NIST CSF…) |
| Run a GuardEntry agent by ID or type |
| Call a single agent skill directly |
| List available skills |
| Get the effective policy for an agent |
| Promote an inferred policy to confirmed |
| Update policy rules (blocked actions, allowed tools, approval patterns) |
| List actions awaiting dashboard approval |
| Check the status of a specific action |
Limiting tools (recommended for CrewAI + Claude)
Anthropic's API has a ~16-parameter union-type limit across all active tools. Use MCP_TOOLS to expose only what you need:
MCP_TOOLS=guardentry_evaluate_action npm run start:httpCrewAI integration
from crewai import Agent, Task, Crew, LLM
from crewai.mcp.config import MCPServerHTTP
import os
mcp = MCPServerHTTP(
url="http://localhost:3001/mcp",
headers={"Authorization": f"Bearer {os.environ['GUARDENTRY_API_KEY']}"},
)
agent = Agent(
role="Compliance Analyst",
goal="Gate every action through GuardEntry APR before executing",
backstory="You check compliance policy before any sensitive operation.",
mcps=[mcp],
llm=LLM(model="anthropic/claude-haiku-4-5-20251001",
api_key=os.environ["ANTHROPIC_API_KEY"]),
)Run the smoke test:
GUARDENTRY_API_KEY=ge_k1_... ANTHROPIC_API_KEY=sk-ant-... python test-crewai.pyEnvironment variables
Variable | Default | Description |
| (required) | API key from GuardEntry dashboard |
|
| Override for local/staging |
|
| HTTP server port |
| (all tools) | Comma-separated tool allowlist |
License
MIT — see LICENSE
Links
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceAdds a responsible-AI safety layer to any agent by exposing RAIL Score's evaluation, agent-guardrail, and compliance capabilities as MCP tools, enabling content scoring, injection detection, tool call evaluation, and DPDP compliance checks.Last updatedMIT
- Alicense-qualityCmaintenanceEnables AI agents to discover and execute tools via a secure MCP server with JWT authentication, RBAC, rate limiting, and audit logging.Last updated1MIT
- Alicense-qualityDmaintenanceExposes Agent Skills to AI agents as MCP tools, enabling discovery and activation of skill instructions for coding agents.Last updated27MIT
- Flicense-qualityCmaintenanceEnables LLM-powered agents to securely communicate with and orchestrate downstream microservices via FastAPI endpoints exposed as MCP tools.Last updated
Related MCP Connectors
Runtime permission, approval, and audit layer for AI agent tool execution.
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/guardentryai/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server