improvement: remove redundant validate_workflow MCP tool#580
Merged
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom Feb 18, 2026
improvement/remove-validate-workflow-toolbreaking-brake/cc-wf-studio:improvement/remove-validate-workflow-toolCopy head branch name to clipboard
Merged
improvement: remove redundant validate_workflow MCP tool#580breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom improvement/remove-validate-workflow-toolbreaking-brake/cc-wf-studio:improvement/remove-validate-workflow-toolCopy head branch name to clipboard
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom
improvement/remove-validate-workflow-toolbreaking-brake/cc-wf-studio:improvement/remove-validate-workflow-toolCopy head branch name to clipboard
Conversation
- Removed validate_workflow tool definition from mcp-server-tools.ts - Updated AI editing skill template to use apply_workflow directly - apply_workflow already performs identical validation internally Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Merged
braking-brake-semantic-release Bot
pushed a commit
that referenced
this pull request
Feb 18, 2026
## [3.22.1](v3.22.0...v3.22.1) (2026-02-18) ### Bug Fixes * escape Mermaid-special characters in node labels ([#579](#579)) ([fced314](fced314)) * support HTTP transport for MCP tool nodes ([#581](#581)) ([cebcd21](cebcd21)) ### Improvements * remove redundant validate_workflow MCP tool ([#580](#580)) ([8683434](8683434))
Merged
braking-brake-semantic-release Bot
pushed a commit
that referenced
this pull request
Feb 18, 2026
## [3.22.1](v3.22.0...v3.22.1) (2026-02-18) ### Bug Fixes * escape Mermaid-special characters in node labels ([#579](#579)) ([fced314](fced314)) * support HTTP transport for MCP tool nodes ([#581](#581)) ([cebcd21](cebcd21)) ### Improvements * remove redundant validate_workflow MCP tool ([#580](#580)) ([8683434](8683434))
|
🎉 This PR is included in version 3.22.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Remove the redundant
validate_workflowMCP tool and simplify the AI editing flow from 6 steps to 5.Closes #571
What Changed
The
validate_workflowMCP tool performed the exact same validation thatapply_workflowalready runs internally (both callvalidateAIGeneratedWorkflow). This caused AI agents to make an unnecessary extra tool call on every edit cycle.Before
validate_workflow→apply_workflowcallsget_workflow_schema,get_current_workflow,apply_workflow,validate_workflowAfter
apply_workflowhandling validation internallyget_workflow_schema,get_current_workflow,apply_workflowChanges
src/extension/services/mcp-server-tools.ts- Removedvalidate_workflowtool definition (68 lines)resources/ai-editing-skill-template.md- Simplified steps 4-6 to 4-5, removedvalidate_workflowfrom descriptionTesting
npm run format && npm run lint && npm run check && npm run buildpasses🤖 Generated with Claude Code