MCP Server Policy
JENKINS MCP POLICY
Enforce policies on every tool call to the Jenkins MCP Server. 14 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 Jenkins.
# Download policy scaffold
curl -o jenkins.yaml https://raw.githubusercontent.com/policylayer/intercept/main/policies/jenkins.yaml
# Run with Intercept
intercept --policy jenkins.yaml -- npx -y @mcp-server-jenkins Server documentation: https://www.npmjs.com/package/mcp-server-jenkins
READ TOOLS
12EXECUTE TOOLS
3POLICY 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 mcp-server-jenkins"
default: "allow"
tools:
get_all_items:
rules: []
get_item:
rules: []
get_item_config:
rules: []
query_items:
rules: []
get_build:
rules: []
get_build_console_output:
rules: []
get_running_builds:
rules: []
get_all_nodes:
rules: []
get_node:
rules: []
get_node_config:
rules: []
get_all_queue_items:
rules: []
get_queue_item:
rules: []
build_item:
rules: []
stop_build:
rules: []
cancel_queue_item:
rules: [] RELATED POLICIES
FREQUENTLY ASKED QUESTIONS
What tools does the Jenkins MCP server expose?
The Jenkins MCP Server exposes 14 tools across 2 categories: Read, Execute. Each tool can be individually controlled with Intercept policies.
How do I enforce policies on Jenkins?
Download the policy scaffold, add rules (rate limits, argument validation, deny rules), then run Intercept as a proxy in front of the Jenkins MCP server. Every tool call is evaluated against your YAML policy before execution.
Is the Jenkins 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 JENKINS
Open source. One binary. Zero dependencies.