get_preview_url
Return the absolute preview URL and page list for a project.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| project_guid | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Return the absolute preview URL and page list for a project.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| project_guid | Yes |
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Input schema / properties / project_guidAdded value: +{
+ "type": "string"
+}Input schema / properties / project_idRemoved value: -{
- "type": "string"
-}Input schema / requiredPrevious value: -[
- "project_id"
-]New value: +[
+ "project_guid"
+]Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral burden. It discloses that the tool returns a preview URL and page list and implies a read-only getter, but it does not mention prerequisites, side effects, or the meaning of the optional page parameter. This is a moderate level of transparency for a simple read method.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no wasted words. It communicates the core return values immediately and is appropriately sized for a 2-parameter read-only tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present, the description need not repeat return details. However, the minimal description leaves meaningful gaps: the exact meaning of the page parameter, any prerequisites or side considerations, and how this differs from related context tools are not addressed. This is acceptable but not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, and the description does not explain the semantics of project_guid or page beyond the implied 'for a project'. The optional page parameter's role in filtering or selecting pages from the list is left completely to inference, so the description fails to compensate for the schema gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Return') and a concrete resource ('absolute preview URL and page list for a project'), making the tool's function clear. It is distinct from siblings like get_project_context, publish_website, or build_site, which reference different resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when the agent needs a preview URL or page list for a project, but it does not explicitly state when to use this tool versus alternatives. It also provides no exclusions or references to sibling tools, leaving the usage context to be inferred rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools pair a distinct action with a distinct resource and long descriptions make intent clear. Still, `search_domains` already provides exact-domain checks, overlapping with `check_domain`, and the `create_project` vs `create_new_site` vs `create_page` cluster takes careful reading.
The vast majority are snake_case verb_noun: list_projects, create_project, delete_page, get_preview_url, write_asset, query_database, publish_website. The only visible outlier is whoami, but it is standard enough that it does not disrupt predictability.
At 36 tools this is meaningfully heavier than the rubric's 'too many' threshold, even though the scope spans websites, backends, domains, gallery images, and databases. It makes selection harder and a sizeable portion of the surface is niche or lifecycle internal.
The core site lifecycle is well covered: project, htmlmanag, assets, preview/publish, validation, deletion, uploaded images, backend files/logs, database reading, domain search and purchase linking. Workable non-critical gaps exist, e.g. no separate project metadata rename and no direct way to delete database rows or a database outside of deleting the project.