Skip to main content
Glama

Delimit Deploy Site

delimit_deploy_site
Destructive

Deploy a static or Next.js site to Vercel by committing and pushing changes, triggering a production build. Use for shipping UI or marketing site updates with verified rollout status.

Instructions

Ship a static / Next.js site via git push to the Vercel pipeline (Pro).

When to use: to deploy UI / site changes (typically delimit-ui or a venture marketing site) — this performs the commit, push, and triggers the Vercel build that produces the production deployment. Pair with delimit_deploy_verify on the resulting deploy URL to confirm rollout health. When NOT to use: to publish an npm package (use delimit_deploy_npm), to push container images (delimit_deploy_publish / delimit_deploy_build), or to roll back (delimit_deploy_rollback).

Sibling contrast: delimit_deploy_publish ships container images; delimit_deploy_npm publishes packages; this is the static-site / Vercel flavour. Compared to running git push by hand, this wraps the push with sanitisation, governance hooks, and (for delimit-ui) automatic ChatOps env-var injection from CHATOPS_AUTH_TOKEN.

Side effects: requires repo_path and is gated by require_premium. project_path must remain inside repo_path. The safe default commits only the existing index; staged_only=false requires explicit repo-relative paths and never uses git add -A. Vercel binding is pulled/validated before Git mutation. A timeout after push returns status=pending, commit SHA, and a delimit_deploy_verify continuation rather than raising. On success this performs LOCAL git operations and triggers a NETWORK deploy (Vercel build webhook). For the delimit-ui project, automatically injects ChatOps env vars from the CHATOPS_AUTH_TOKEN environment variable into the build context. No rollback — use delimit_deploy_rollback if the deploy regresses.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appNoDeployment application identity, separate from filesystem context.
pathsNoExplicit repo-relative paths to stage; set staged_only=false when used.
messageNoGit commit message for the deploy commit.
repo_pathNoRequired explicit Git worktree root; never derived from MCP server cwd.
staged_onlyNoDeploy only the existing index. Safe default: true.
project_pathNoSite directory inside repo_path, or an absolute path inside it..
vercel_timeoutNoSeconds to wait for Vercel after push before returning pending (10-600).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed6 schema fields changedv4.13.2
    • addedInput schema / properties / app
      Added value: +{
      +  "default": "",
      +  "description": "Deployment application identity, separate from filesystem context.",
      +  "type": "string"
      +}
    • addedInput schema / properties / paths
      Added value: +{
      +  "anyOf": [
      +    {
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Explicit repo-relative paths to stage; set staged_only=false when used."
      +}
    • changedInput schema / properties / project_path / description
      Previous value: -"Path to the site project. Default \".\" (cwd). Sanitized — must not escape the workspace root."New value: +"Site directory inside repo_path, or an absolute path inside it."
    • addedInput schema / properties / repo_path
      Added value: +{
      +  "default": "",
      +  "description": "Required explicit Git worktree root; never derived from MCP server cwd.",
      +  "type": "string"
      +}
    • addedInput schema / properties / staged_only
      Added value: +{
      +  "default": true,
      +  "description": "Deploy only the existing index. Safe default: true.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / vercel_timeout
      Added value: +{
      +  "default": 60,
      +  "description": "Seconds to wait for Vercel after push before returning pending (10-600).",
      +  "type": "integer"
      +}
  2. Changed2 schema fields changedv4.7.9
    • addedInput schema / properties / message / description
      Added value: +"Git commit message for the deploy commit."
    • addedInput schema / properties / project_path / description
      Added value: +"Path to the site project. Default \".\" (cwd). Sanitized — must not escape the workspace root."
  3. First observedv0.1.0

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description goes well beyond the annotations by disclosing local git mutation plus a network Vercel deploy, pre-validation of the Vercel binding, timeout behavior returning status=pending with an SHA, the absence of rollback, and the staged_only safety semantics. It also correctly aligns with destructiveHint=true and readOnlyHint=false, so there is no contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-organized with clear sections and front-loaded purpose, but it repeats the ChatOps env-var injection detail in two separate paragraphs and is somewhat longer than necessary. Minor trimming would make it more concise while preserving all the valuable context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive, network-triggering 7-parameter tool, the description covers prerequisites, when-not-to-use, side effects, timeout fallback behavior, and the rollback alternative. Since an output schema exists, the return-value details do not need to be restated here, making this description complete for safe and correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is already 100%, so the baseline is 3, but the description adds meaningful constraints: repo_path must be an explicit worktree root, project_path must remain inside repo_path, and staged_only=false requires explicit paths and never uses git add -A. This adds value beyond the schema, though some parameter-specific details are still left to the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The first sentence names a concrete action ('Ship a static / Next.js site via git push to the Vercel pipeline') and the sibling contrast explicitly distinguishes it from delimit_deploy_publish and delimit_deploy_npm. This gives the agent an unambiguous model of what the tool does and how it differs from nearby deploy tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description contains explicit 'When to use' and 'When NOT to use' sections, names the correct siblings for npm, container, and rollback flows, and tells the agent to pair with delimit_deploy_verify on the resulting URL. This leaves no ambiguity about when this tool is the right choice.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/delimit-ai/delimit-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server