MCP Server Policy

SQLITE MCP POLICY

Enforce policies on every tool call to the SQLite MCP Server. 6 tools listed, categorised, and ready for rules.

3 read 3 write 6 tools total
sqlite database

GET STARTED

Download this policy scaffold and add your rules. Intercept enforces them on every tool call before it reaches SQLite.

terminal

# Download policy scaffold

curl -o sqlite.yaml https://raw.githubusercontent.com/policylayer/intercept/main/policies/sqlite.yaml

# Run with Intercept

intercept --policy sqlite.yaml -- npx -y @

Server documentation: https://github.com/modelcontextprotocol/servers-archived/tree/main/src/sqlite

READ TOOLS

3

WRITE TOOLS

2

OTHER TOOLS

1

POLICY YAML

This scaffold lists every tool with empty rules. Add conditions — rate limits, argument validation, deny rules — then deploy with Intercept.

sqlite.yaml
version: "1"
description: "Policy for "
default: "allow"
tools:
    append_insight:
        rules: []
    create_table:
        rules: []
    describe_table:
        rules: []
    list_tables:
        rules: []
    read_query:
        rules: []
    write_query:
        rules: []

RELATED POLICIES

FREQUENTLY ASKED QUESTIONS

What tools does the SQLite MCP server expose?

The SQLite MCP Server exposes 6 tools across 3 categories: Other, Write, Read. Each tool can be individually controlled with Intercept policies.

How do I enforce policies on SQLite?

Download the policy scaffold, add rules (rate limits, argument validation, deny rules), then run Intercept as a proxy in front of the SQLite MCP server. Every tool call is evaluated against your YAML policy before execution.

Is the SQLite 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 SQLITE

Open source. One binary. Zero dependencies.