Skip to main content
Glama

List deployments

forge_list_deployments
Read-only

List a site's deployment history. Forge v2: GET /orgs/{organization}/servers/{server}/sites/{site}/deployments.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
siteYesSite id.
serverYesServer id.
page_sizeNoResults per page (maps to page[size]).
page_cursorNoPagination cursor (maps to page[cursor]).
organizationYesOrganization id.

Schema Changelog

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

  1. First observed

TDQS

A3.7/5.0
Behavior3/5

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

Annotations include readOnlyHint=true, so the tool is already known to be a safe read operation. The description adds minimal behavioral context—just the API endpoint—but doesn't disclose pagination behavior, rate limits, or auth requirements beyond what annotations convey.

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 efficient: two sentences, no fluff. It front-loads the core purpose and then provides the API endpoint for technical context. Every sentence contributes value.

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

Completeness3/5

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

While the schema and annotations cover parameters and safety, the description omits what the tool returns (e.g., a list of deployments). With no output schema, this is a gap. Pagination behavior could also be clarified given the page_size and page_cursor parameters.

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 description coverage is 100%, meaning all 5 parameters are documented in the schema. The description adds no additional meaning or context for any parameter, so it meets the baseline level of value.

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 'List a site's deployment history,' specifying the verb 'list' and resource 'deployments' scoped to a site. This distinguishes it from siblings like forge_get_deployment (single) and forge_deploy_site (create).

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 listing deployment history but provides no explicit guidance on when to use this tool versus alternatives like forge_get_deployment or forge_deploy_site. No when-not or exclusion criteria are mentioned.

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.