@agentgate/mcp
v0.0.1
Published
MCP (Model Context Protocol) server for AgentGate. Enables Claude and other MCP-compatible AI assistants to request approvals.
Downloads
72
Readme
@agentgate/mcp
MCP (Model Context Protocol) server for AgentGate. Enables Claude and other MCP-compatible AI assistants to request approvals.
Installation
npm install -g @agentgate/mcpClaude Desktop Configuration
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"agentgate": {
"command": "npx",
"args": ["@agentgate/mcp"],
"env": {
"AGENTGATE_URL": "http://localhost:3000",
"AGENTGATE_API_KEY": "your-api-key"
}
}
}
}Available Tools
- agentgate_request - Submit an approval request
- agentgate_get - Check request status
- agentgate_list - List requests with filters
- agentgate_decide - Approve or deny (for agent-approvers)
Environment Variables
AGENTGATE_URL- AgentGate server URL (default: http://localhost:3000)AGENTGATE_API_KEY- API key for authentication
