Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull Request: Add Dry-Run Mode to Kubectl MCP Tool #1

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

Adesoji1
Copy link

Summary
This pull request introduces a new dry-run mode to the Kubectl MCP Tool. Dry-run mode allows users to simulate mutating operations (such as creating, deleting, or scaling resources) without applying any changes to their Kubernetes clusters. This feature is especially useful for testing, debugging, and ensuring the correctness of commands before executing them in a production environment.

Changes Made
CLI Enhancements:

Added a new command-line flag --dry-run in the CLI (kubectl_mcp_tool/cli.py).

When enabled, the flag sets an environment variable (e.g., KUBECTL_MCP_DRY_RUN=1) that signals dry-run mode across the tool.

Core Command Execution:

Modified the _run_kubectl_command function in kubectl_mcp_tool/mcp_kubectl_tool.py to check for the dry-run environment variable.

For any mutating operations (commands starting with apply, delete, create, or scale), the function now returns a simulated command string rather than executing the actual kubectl command.

Documentation Updates:

Updated the README.md to include a new section on how to run the server in dry-run mode and test it using a provided create_pod.py snippet.

This section outlines step-by-step instructions to verify that dry-run mode intercepts mutating commands and simulates the operation.

Advantages
Safety: Users can preview the exact commands that would be executed without modifying any cluster resources. This minimizes risks associated with accidental deployments or deletions.

Testing & Debugging: Developers and operators can verify the behavior of complex operations and natural language command translations in a non-destructive manner.

Enhanced Confidence: By simulating changes before applying them, users can ensure that their intended operations are correct, which is particularly beneficial in CI/CD pipelines or when integrating with AI assistants.

Testing
I have tested the feature by:

Running the MCP server with the --dry-run flag.

Executing a simulated pod creation command using the provided create_pod.py script.

Confirming that the output indicates the command was simulated (e.g., "Dry-run mode: Command simulated: kubectl apply -f /tmp/tmpabcd.yaml").

Please review the changes, and let me know if you have any questions or require further modifications.

@rohitg00
Copy link
Owner

Can you please add screenshots of the output running dry run? Thanks.

@Adesoji1
Copy link
Author

sure :
image

@rohitg00
Copy link
Owner

Hello,

I would love to see you trying out a dry run by configuring MCP with Claude, cursor, or windsurf.

Sorry for asking you to do it.

Thanks

@Adesoji1
Copy link
Author

Adesoji1 commented Mar 27, 2025 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants