-
Notifications
You must be signed in to change notification settings - Fork 3.3k
v0.5.79: longer MCP tools timeout, optimize loop/parallel regeneration, enrich.so integration #3104
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
Conversation
waleedlatif1
commented
Feb 1, 2026
- improvement(ratelimits, sockets): increase across all plans, reconnecting notif for sockets (improvement(ratelimits, sockets): increase across all plans, reconnecting notif for sockets #3096)
- fix(mcp): pass timeout to SDK callTool to override 60s default (fix(mcp): pass timeout to SDK callTool to override 60s default #3101)
- fix(workflow): optimize loop/parallel regeneration and prevent duplicate agent tools (fix(workflow): optimize loop/parallel regeneration and prevent duplicate agent tools #3100)
- feat(tools): added enrich so (feat(tools): added enrich so #3103)
…ting notif for sockets (#3096) * improvement(rate-limits): increase across all plans * improve sockets with reconnecting * address bugbot comment * fix typing
…ate agent tools (#3100) * fix(workflow): optimize loop/parallel regeneration and prevent duplicate agent tools * refactor(workflow): remove addBlock in favor of batchAddBlocks - Migrated undo-redo to use batchAddBlocks instead of addBlock loop - Removed addBlock method from workflow store (now unused) - Updated tests to use helper function wrapping batchAddBlocks - This fixes the cursor bot comments about inconsistent parent checking
* feat(tools): added enrich so * updated docs and types
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile OverviewGreptile SummaryThis PR bundles four separate improvements into version 0.5.79: Enrich.so Integration (#3103)
MCP Timeout Fix (#3101)
Workflow Performance Optimization (#3100)
Rate Limits & Socket Improvements (#3096)
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Client as Frontend Client
participant Socket as Socket Provider
participant Handler as Socket Handler
participant Store as Workflow Store
participant DB as Database
Note over Client,DB: Subblock/Variable Update Flow (with workflowId validation)
Client->>Socket: emitSubblockUpdate(blockId, subblockId, value, operationId, workflowId)
Socket->>Handler: socket.emit('subblock-update', {workflowId, blockId, ...})
Handler->>Handler: Validate sessionWorkflowId vs payloadWorkflowId
alt Workflow ID mismatch
Handler->>Socket: emit('operation-failed', {operationId, error})
Socket->>Client: Operation failed notification
else Valid workflow ID
Handler->>Handler: Queue update for coalescing
Handler->>DB: Flush batched update
DB-->>Handler: Update success
Handler->>Socket: emit('operation-confirmed', {operationId})
Handler->>Client: Broadcast update (except sender)
end
Note over Store: Loop/Parallel Optimization
Client->>Store: batchAddBlocks(blocks, edges)
Store->>Store: Check if blocks affect loop/parallel structure
alt Affects structure (loop/parallel container or child)
Store->>Store: generateLoopBlocks() / generateParallelBlocks()
else Only edges or unrelated blocks
Store->>Store: Skip regeneration (reuse existing)
end
Store-->>Client: State updated
Note over Client,Handler: MCP Tool Execution
Client->>Handler: Execute MCP tool
Handler->>Handler: client.callTool(params, undefined, {timeout: 600000})
Note right of Handler: 10 min timeout instead of 60s default
Handler-->>Client: Tool result
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
8 files reviewed, no comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.