MCP Server Policy
CONVEX MCP POLICY
Enforce policies on every tool call to the Convex MCP Server. 12 tools listed, categorised, and ready for rules.
GET STARTED
Download this policy scaffold and add your rules. Intercept enforces them on every tool call before it reaches Convex.
# Download policy scaffold
curl -o convex.yaml https://raw.githubusercontent.com/policylayer/intercept/main/policies/convex.yaml
# Run with Intercept
intercept --policy convex.yaml -- npx -y @get-convex/convex-backend Server documentation: https://convex.dev
READ TOOLS
9WRITE TOOLS
1DESTRUCTIVE TOOLS
1EXECUTE TOOLS
1POLICY YAML
This scaffold lists every tool with empty rules. Add conditions — rate limits, argument validation, deny rules — then deploy with Intercept.
version: "1"
description: "Policy for get-convex/convex-backend"
default: "allow"
tools:
status:
rules: []
tables:
rules: []
data:
rules: []
runOneoffQuery:
rules: []
functionSpec:
rules: []
logs:
rules: []
insights:
rules: []
envList:
rules: []
envGet:
rules: []
envSet:
rules: []
run:
rules: []
envRemove:
rules: [] RELATED POLICIES
FREQUENTLY ASKED QUESTIONS
What tools does the Convex MCP server expose?
The Convex MCP Server exposes 12 tools across 4 categories: Read, Write, Execute, Destructive. Each tool can be individually controlled with Intercept policies.
How do I enforce policies on Convex?
Download the policy scaffold, add rules (rate limits, argument validation, deny rules), then run Intercept as a proxy in front of the Convex MCP server. Every tool call is evaluated against your YAML policy before execution.
Is the Convex policy free to use?
Yes. All Intercept policies are open source under the Apache 2.0 licence. Download, modify, and deploy without restrictions.
ENFORCE POLICIES ON CONVEX
Open source. One binary. Zero dependencies.