We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/venikman/fpf-agent-stack'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
guard_tristate.feature•644 B
Feature: Guard tri-state discipline
Guards return pass, degrade, or abstain; unknown evidence never coerces to pass.
@guard
Scenario: Missing required evidence causes abstain
Given the tool "write_file" requires evidence carrier "session_open"
And evidence carrier "session_open" is missing
When the guard is evaluated
Then the guard decision should be "abstain"
@guard
Scenario: Execution failure results in degrade
Given the guard decision is "pass"
When the tool execution fails with error "disk full"
Then the guard decision should be "degrade"
And the evidence should include the captured error