MCP Server Policy
AIRTABLE MCP POLICY
Enforce policies on every tool call to the Airtable 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 Airtable.
# Download policy scaffold
curl -o airtable.yaml https://raw.githubusercontent.com/policylayer/intercept/main/policies/airtable.yaml
# Run with Intercept
intercept --policy airtable.yaml -- npx -y @@felores/airtable-mcp-server Server documentation: https://github.com/felores/airtable-mcp
READ TOOLS
5WRITE TOOLS
6DESTRUCTIVE 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 @felores/airtable-mcp-server"
default: "allow"
tools:
list_bases:
rules: []
list_tables:
rules: []
list_records:
rules: []
get_record:
rules: []
search_records:
rules: []
create_table:
rules: []
update_table:
rules: []
create_field:
rules: []
update_field:
rules: []
create_record:
rules: []
update_record:
rules: []
delete_record:
rules: [] RELATED POLICIES
FREQUENTLY ASKED QUESTIONS
What tools does the Airtable MCP server expose?
The Airtable MCP Server exposes 12 tools across 3 categories: Read, Write, Destructive. Each tool can be individually controlled with Intercept policies.
How do I enforce policies on Airtable?
Download the policy scaffold, add rules (rate limits, argument validation, deny rules), then run Intercept as a proxy in front of the Airtable MCP server. Every tool call is evaluated against your YAML policy before execution.
Is the Airtable 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 AIRTABLE
Open source. One binary. Zero dependencies.