What is the AgentGate MCP server?
Human-in-the-loop approval gateway for AI agents over MCP: request, decide, approve.
How to install AgentGate
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"agentgate": {
"command": "npx",
"args": [
"-y",
"@agentkitai/agentgate-mcp"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"agentgate": {
"command": "npx",
"args": [
"-y",
"@agentkitai/agentgate-mcp"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"agentgate": {
"command": "npx",
"args": [
"-y",
"@agentkitai/agentgate-mcp"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"agentgate": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@agentkitai/agentgate-mcp"
]
}
}
}Claude Code
claude mcp add agentgate -- npx -y @agentkitai/agentgate-mcpRelated MCP servers
AgentLens
Active
Tamper-evident, SHA-256 hash-chained audit trail and observability for AI agents.
8
View repository →TypeScript
MIT
Lore
Active
Cross-agent memory over MCP: hybrid recall, knowledge graph, private/shared visibility, redaction.
6
View repository →Python
MIT