10 tools. 7 can modify or destroy data without limits.
2 destructive tools with no built-in limits. Policy required.
Last updated:
Destructive tools (delete-record, drop-table) permanently delete resources. There is no undo. An agent calling these in a retry loop causes irreversible damage.
Write operations (create-table, insert-record, update-record) modify state. Without rate limits, an agent can make hundreds of changes in seconds — faster than any human can review or revert.
Execute tools (execute, transaction) trigger processes with side effects. Builds, notifications, workflows — all fired without throttling.
Intercept sits between your agent and Sqlite. Every tool call checked against your policy before it executes — so your agent can do its job without breaking things.
npx -y @policylayer/intercept scan -- npx -y @mcp-server-sqlite delete-record:
rules:
- action: deny Destructive tools should never be available to autonomous agents without human approval.
create-table:
rules:
- rate_limit: 30/hour Prevents bulk unintended modifications from agents caught in loops.
describe-table:
rules:
- rate_limit: 60/minute Controls API costs and prevents retry loops from exhausting upstream rate limits.
Yes. The Sqlite server exposes 2 destructive tools including delete-record, drop-table. These permanently remove resources with no undo. Intercept blocks destructive tools by default so they never reach the upstream server.
The Sqlite server has 3 write tools including create-table, insert-record, update-record. Set rate limits in your policy file -- for example, rate_limit: 10/hour prevents an agent from making more than 10 modifications per hour. Intercept enforces this at the transport layer.
10 tools across 4 categories: Destructive, Execute, Read, Write. 3 are read-only. 7 can modify, create, or delete data.
One line change. Instead of running the Sqlite server directly, prefix it with Intercept: intercept -c sqlite.yaml -- npx -y @mcp-server-sqlite. Download a pre-built policy from policylayer.com/policies/sqlite and adjust the limits to match your use case.
Starter policies available for each. Same risk classification, same one-command setup.
Set budgets, approvals, and hard limits across MCP servers.
npx -y @policylayer/intercept init