feat(tools): added vercel block & tools#3252
Merged
waleedlatif1 merged 4 commits intostagingfrom Feb 18, 2026
Merged
Conversation
Add Vercel platform management integration covering deployments, projects, environment variables, domains, DNS records, aliases, edge configs, and team/user management. All tools use API key authentication with Bearer tokens. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add 8 new Vercel API tools: - Webhooks: list, create, delete - Deployment Checks: create, get, list, update, rerequest Brings total Vercel tools to 50.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Greptile SummaryThis PR adds comprehensive Vercel integration with 50 tools covering deployments, projects, domains, DNS records, environment variables, aliases, edge configs, webhooks, deployment checks, and team management. The implementation follows established patterns from other integrations in the codebase. Key Changes:
Implementation Quality:
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Vercel Block UI] -->|User Selects Operation| B[Block Config]
B -->|Maps to Tool| C[Tool Registry]
C -->|Routes Request| D{Operation Type}
D -->|Deployments| E[Deployment Tools]
D -->|Projects| F[Project Tools]
D -->|Domains/DNS| G[Domain Tools]
D -->|Env Vars| H[Environment Tools]
D -->|Other| I[Alias/Webhook/Check Tools]
E --> J[Vercel API v13]
F --> K[Vercel API v10]
G --> L[Vercel API v1]
H --> K
I --> J
J --> M[Transform Response]
K --> M
L --> M
M --> N[Return Output to Workflow]
Last reviewed commit: 54025ee |
Expand unexpanded output types: - get_deployment: meta and gitSource objects now have properties - list_deployment_files: children array now has items definition - get_team: teamRoles and teamPermissions arrays now have items Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
Type of Change
Testing
Tested manually
Checklist