This is for when you're orchestrating multiple AI agents and need to prevent them from stepping on each other's toes. It gives you six tools to define what each agent can and can't do: create_scope_contract sets boundaries like allowed tools and file access patterns, validate_action checks if a proposed action is within scope before execution, and detect_delegation_loop catches circular delegation chains. You also get logging, compliance reports showing violation counts and scope utilization percentages, and work duplication detection across agents. Reach for this when you're building agentic systems where agents might delegate to each other and you need guardrails to prevent chaos.
MCP server that enforces multi-agent scope boundaries. Prevents scope drift, work duplication, and infinite delegation loops in agentic systems.
| Tool | Purpose |
|---|---|
create_scope_contract | Define agent boundaries: allowed/forbidden tools, file access patterns, delegation limits |
validate_action | Pre-flight check — is a tool call or file access within scope? |
detect_delegation_loop | Analyze delegation chains for circular patterns |
log_agent_action | Track agent actions for compliance monitoring |
get_compliance_report | Per-agent summary: actions, violations, delegation count, scope utilization % |
detect_work_duplication | Find agents doing the same work across action logs |
| URI | Description |
|---|---|
scope-guard://contracts | All active scope contracts |
npm install
node src/index.js
{
"mcpServers": {
"scope-guard": {
"command": "npx",
"args": ["scope-guard-mcp"]
}
}
}
MIT
io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage
io.github.mikerawsonnz/llm-orchestration-agent
io.github.mikerawsonnz/authenticated-llm-agent
labforgedev/copilot-memory-mcp
csoai-org/agent-prompt-injection-firewall-mcp
io.github.mikerawsonnz/authenticated-multi-llm-agent