Skip to main content
Glama

Get deployment log

forge_get_deployment_log
Read-only

Get a deployment's output/log. Forge v2: GET /orgs/{organization}/servers/{server}/sites/{site}/deployments/{deployment}/log.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
siteYesSite id.
serverYesServer id.
deploymentYesDeployment id.
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 already declare readOnlyHint=true, so the safety profile is clear. The description adds the endpoint but no further behavioral details like pagination, size limits, or error conditions.

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?

Two concise sentences: the first states the purpose, the second provides the exact API endpoint. No wasted words, well-front-loaded.

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?

With no output schema, the description does not explain the return format. It is adequate for a simple read operation but could mention that the log is returned as text.

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?

All four parameters have short descriptions in the schema (e.g., 'Site id.'), and the description does not add extra meaning beyond mentioning them in the URL. Schema coverage is 100%, so baseline 3 is appropriate.

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 gets a deployment's output/log, which distinguishes it from siblings like forge_get_deployment (deployment info) and forge_get_deployment_status (status). The endpoint path further specifies the resource.

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 does not provide explicit when-to-use or alternative guidance. It implies usage for retrieving logs but lacks prerequisites or context for when to prefer this over similar tools.

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.