MCP Server Policy
POSTMAN MCP POLICY
Enforce policies on every tool call to the Postman MCP Server. 30 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 Postman.
# Download policy scaffold
curl -o postman.yaml https://raw.githubusercontent.com/policylayer/intercept/main/policies/postman.yaml
# Run with Intercept
intercept --policy postman.yaml -- npx -y @postmanlabs/postman-mcp-server Server documentation: https://github.com/postmanlabs/postman-mcp-server
READ TOOLS
12WRITE TOOLS
11DESTRUCTIVE TOOLS
6EXECUTE 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 postmanlabs/postman-mcp-server"
default: "allow"
tools:
getApi:
rules: []
getCollection:
rules: []
getEnvironment:
rules: []
getMock:
rules: []
getMonitor:
rules: []
getWorkspace:
rules: []
listApis:
rules: []
listCollections:
rules: []
listEnvironments:
rules: []
listMocks:
rules: []
listMonitors:
rules: []
listWorkspaces:
rules: []
createApi:
rules: []
createCollection:
rules: []
createEnvironment:
rules: []
createMock:
rules: []
createMonitor:
rules: []
createWorkspace:
rules: []
updateApi:
rules: []
updateCollection:
rules: []
updateEnvironment:
rules: []
updateMock:
rules: []
updateWorkspace:
rules: []
runMonitor:
rules: []
deleteApi:
rules: []
deleteCollection:
rules: []
deleteEnvironment:
rules: []
deleteMock:
rules: []
deleteMonitor:
rules: []
deleteWorkspace:
rules: [] RELATED POLICIES
FREQUENTLY ASKED QUESTIONS
What tools does the Postman MCP server expose?
The Postman MCP Server exposes 30 tools across 4 categories: Read, Write, Execute, Destructive. Each tool can be individually controlled with Intercept policies.
How do I enforce policies on Postman?
Download the policy scaffold, add rules (rate limits, argument validation, deny rules), then run Intercept as a proxy in front of the Postman MCP server. Every tool call is evaluated against your YAML policy before execution.
Is the Postman 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 POSTMAN
Open source. One binary. Zero dependencies.