Private Beta — Contact us to get set up.
Provider options
- LangGuard for a ready-to-use external policy platform.
- BYO interceptor service for internal or vendor governance engines.
What is authoritative
- Identity and role claims come from your IdP.
- Policy decisions come from your configured interceptor provider.
- UI-level warnings are not authoritative enforcement.
When to use a PDP interceptor
- Enforce enterprise policy beyond guardrails (e.g., geographic restrictions, tool allowlists).
- Route sensitive requests to humans for approval.
- Centralize policy decisions across multiple MCP servers.
Configuration
Configure the PDP provider per organization in SaaS UI:- Open
/beta/governance/integrations. - Choose
LangGuardorBring Your Own. - Set
Interceptor URL,Interceptor Name, and optionalAPI Key. - Test the connection and save.
- Enable the provider for active enforcement.
GET /governance/providers/configPATCH /governance/providers/configPOST /governance/providers/testDELETE /governance/providers/config
Decision point request
The callee sends a JSON-RPC request to the configured interceptor service URL. HTTP- Method:
POST - Content-Type:
application/json - Authorization:
Bearer <token>
Request fields
Decision point response
The interceptor responds with a JSON-RPCresult that contains a validation outcome.
HTTP Status Code: 200 OK (for a valid JSON-RPC response)
Response fields
Violation object
Example blocked response:
Decision flow
1
Receive MCP call
An MCP request arrives at the callee.
2
Prepare the policy request
Wrap the MCP call in the JSON-RPC
interceptor/validate payload.3
Invoke the interceptor
POST the payload to your interceptor service URL.
4
Evaluate the response
Verify the HTTP status is 200, then read
result.status and result.violations.5
Decide the outcome
Success: proceed with the MCP call. Notify: log the notification for review and proceed with the MCP call. Failure: block the MCP call and log violations.
Error handling
- Non-200 HTTP responses: treat as a policy failure and block the request.
- Timeouts: default to block and log for follow-up.
- Malformed JSON-RPC: treat as failure and return an internal error to the caller.
Security considerations
- Authenticate the interceptor endpoint with a bearer token.
- Data exposure: Tool call arguments are forwarded to the interceptor service for policy evaluation. Review your interceptor provider’s data handling policies to ensure compliance with your organization’s privacy requirements.
- Log all validation outcomes to your audit system.
- Keep a deny-by-default stance for transport or parsing errors.
Need help wiring this into your MCP server? Reach out at [email protected].

