Skip to main content
Glama

Get deployment status

forge_get_deployment_status
Read-only

Get the current deployment status for a site. Forge v2: GET /orgs/{organization}/servers/{server}/sites/{site}/deployments/status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
siteYesSite id.
serverYesServer id.
organizationYesOrganization id.

Schema Changelog

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

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, establishing safety. The description adds context about the endpoint (GET) and the 'current' nature of the status, but does not elaborate on authorization or rate limits.

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

Conciseness5/5

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

The description is a single sentence plus an endpoint URL. No unnecessary words; every element serves a purpose. It is efficient and easy to read.

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

Completeness4/5

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

For a simple read-only tool with three parameters and no output schema, the description adequately explains purpose and API path. However, it does not describe the return value format, which would be helpful but is not critical given the tool's simplicity.

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

Parameters3/5

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

Schema coverage is 100%, so the baseline is 3. The description does not add meaning beyond the schema's parameter descriptions (e.g., 'Site id.'). It only mentions 'for a site', adding no new semantic depth.

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 description clearly states the tool's purpose: 'Get the current deployment status for a site.' It includes the specific HTTP endpoint, distinguishing it from sibling tools like forge_get_deployment (which fetches a specific deployment) and forge_deploy_site.

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

Usage Guidelines3/5

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

The description implies usage for checking current status but does not provide explicit guidance on when to use this tool versus alternatives like forge_get_deployment or forge_list_deployments. It lacks when-not-to-use instructions.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation5/5

Each tool has a clear, distinct purpose. Even the five deployment-related tools are well-differentiated by their actions (deploy, get, log, status, list) and descriptions.

Naming Consistency5/5

All tools follow a consistent 'forge_verb_noun' pattern with clear verbs (deploy, get, list, run) and nouns (site, user, deployment, etc.). No mixing of conventions.

Tool Count5/5

17 tools cover the core operations for Laravel Forge (organizations, servers, sites, deployments, databases, etc.) without being excessive. Each tool earns its place.

Completeness2/5

The toolset is heavily read-only (list/get) with only two mutation tools (deploy_site, run_site_command). Missing CRUD for servers, sites, databases, scheduled jobs, etc. Significant gaps for full server management.