Skip to main content
Glama

Server Details

Zero-Ops deploy of a private AI workspace to your own VPS — from your AI chat. Free and open-source.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.5/5 across 8 of 8 tools scored.

Server CoherenceA
Disambiguation4/5

Most tools have distinct purposes (status, info about different aspects, address retrieval, recommendation, deploy, retry). However, get_ai_development_loop_info and get_ai_workspace_architect_info both return diagrams and explanations, which could cause minor confusion, but descriptions clarify their separate domains.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (e.g., check_status, get_project_info). No mixing of styles, predictable and clear.

Tool Count5/5

With 8 tools, the set is well-scoped for a deployment and information server. Each tool addresses a necessary step or query without redundancy or bloat.

Completeness4/5

The tool surface covers the full deployment lifecycle (recommend, deploy, check status, retry, get address) plus comprehensive info. Minor gaps like cancellation or log streaming are absent but not critical for the server's stated purpose.

Available Tools

8 tools
check_statusCheck Deployment StatusA
Read-only
Inspect

Read the current installation progress ONCE, on demand. Call this only when the user explicitly asks how the deploy is going (e.g. "what is the status", "did it finish") — never on a timer and never in a polling loop. The deploy takes 8-14 minutes and the authoritative status channels are the email pipeline + the dashboard; one read on request is enough. Returns the current step, the list of completed steps (~44 total in a full bootstrap), and whether installation is done or failed.

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idYesThe session_id returned by register_and_deploy or retry_deploy.
Behavior4/5

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

Annotations declare readOnlyHint=true and destructiveHint=false. The description goes further by detailing behavioral traits: it is a one-time read on demand, the deployment timing (8-14 minutes), and the return content (current step, completed steps, done/failed). This adds valuable context without contradicting annotations.

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 four sentences, front-loaded with purpose and usage. Every sentence provides essential information without redundancy, earning its place. It is both concise and well-structured.

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?

Given the tool has one parameter, no output schema, and no nested objects, the description is complete. It explains what the tool returns (current step, completed steps, done/failed), which is critical since there is no output schema. No gaps or ambiguities remain.

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?

The input schema has one parameter (session_id) with a description, and coverage is 100%. The description does not add new details about the parameter itself, but it provides context by stating where the session_id comes from (register_and_deploy or retry_deploy). This is marginally helpful, meeting the baseline for high schema coverage.

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 reads current installation progress on demand, specifies the verb ('Read'), the resource ('current installation progress'), and distinguishes from sibling tools like register_and_deploy and retry_deploy. It explains when to call (user explicitly asks, never on timer or polling), making its purpose unambiguous.

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 provides explicit usage guidance: call only when the user explicitly asks about deployment status, never on a timer or in a polling loop. It also mentions authoritative status channels (email pipeline + dashboard), helping the agent decide when to use this tool versus alternatives.

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

get_ai_development_loop_infoGet Fractera Development LoopA
Read-only
Inspect

Explains the Fractera development loop: how one admin request becomes tested, deployed, recorded code with no human writing it — Hermes orchestrates and loads its identity + project context, picks a ready coding agent (Claude Code, Codex, Gemini, Qwen, Kimi), the agent is enriched (SOUL.md / AGENTS.md / GLOSSARY.md / completed steps), generates a task then code, it is built and deployed, and the result branches (error feeds back; success updates the completed steps and the deployments tab) — all grounded by LightRAG memory at every step. RETURNS A DIAGRAM IMAGE URL you can show the user when they ask how Fractera builds software or how its agents work. Call with NO arguments to get the diagram URL + the "how the loop works" overview + the section list; call again with a single section id to read one stage in depth.

ParametersJSON Schema
NameRequiredDescriptionDefault
sectionNoA section id from the list (e.g. "hermes", "lightrag", "test-deploy", "the-record"). Omit to get the diagram, the overview and the section list.
Behavior4/5

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

Annotations already indicate readOnlyHint=true and destructiveHint=false. The description adds value by detailing what is returned (diagram URL, overview, section list) and the branching behavior of the loop. No contradictions.

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

Conciseness3/5

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

The description is verbose, explaining the entire loop in detail. While it is well-structured and front-loads the main purpose, it could be tighter. It earns its place but is longer than necessary.

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 tool with no output schema and one optional parameter, the description is thorough: it covers the main output (diagram URL, overview, section list), the two invocation modes, and provides an executive summary of the loop. No gaps remain.

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 100% with a clear description for the 'section' parameter. The description further explains the two usage patterns and gives example section IDs (e.g., 'hermes', 'lightrag'), adding semantic value beyond 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 description clearly states the tool explains the Fractera development loop, returning a diagram URL and overview. It distinguishes itself from sibling tools, which handle other aspects like project info, deployment, or subdomain details.

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

Usage Guidelines4/5

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

Explicitly says to use when user asks 'how Fractera builds software' or 'how its agents work'. Provides two call patterns: no arguments for diagram+overview, or a section id for in-depth reading. Does not mention alternatives or when not to use, but context is clear.

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

get_ai_workspace_architect_infoGet AI Workspace ArchitectureA
Read-only
Inspect

Architecture reference for Fractera AI Workspace: what it is made of and how it works (the admin drives it through Hermes — chat Web UI or Telegram — or directly through the five coding agents; a modal subscription sign-in layer + MCP keep work resilient when a subscription is limited; LightRAG is the central memory that slashes token use; Hermes is a light orchestrator while the coding agents do the heavy lifting; the result ships over HTTPS on a custom domain or plain HTTP on an IP). RETURNS A DIAGRAM IMAGE URL you can show the user when they ask what Fractera is or how it works. Call with NO arguments to get the wide illustration URL + the core "how it works" scenario + the section list; call again with a single section id to read one entity in depth.

ParametersJSON Schema
NameRequiredDescriptionDefault
sectionNoA section id from the list (e.g. "hermes", "lightrag", "coding-agents", "claude-code"). Omit to get the illustration, the overview scenario and the section list.
Behavior4/5

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

Annotations already provide readOnlyHint=true and destructiveHint=false. The description adds detailed behavioral context: it returns a diagram image URL, overview scenario, section list, or in-depth entity details depending on arguments. This goes beyond the annotations.

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

Conciseness3/5

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

The description is relatively long but packs significant information. It front-loads the purpose but could be slightly more concise. Every sentence adds value, but the length is acceptable for the complexity of the tool.

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 tool with one optional parameter and no output schema, the description covers the key behaviors: both invocation modes, what is returned, and a link to the diagram. It lacks mention of edge cases or limitations, but overall is complete given the tool's simplicity.

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 100% with one parameter described. The description adds value by providing example section ids (e.g., 'hermes', 'lightrag') and explaining the behavioral difference between omitting and including the parameter, which enriches the schema's description.

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 returns an architecture reference for Fractera AI Workspace, including a diagram image URL. It uses a specific verb 'get' and resource 'AI workspace architecture', distinguishing it from siblings like check_status or get_ai_development_loop_info.

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

Usage Guidelines4/5

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

The description explicitly says to call when the user asks what Fractera is or how it works, and explains two invocation modes (no arguments vs. with a section id). While it doesn't explicitly list exclusions or alternatives, the provided context is clear and sufficient.

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

get_project_infoGet Project InformationA
Read-only
Inspect

Project reference / help desk about Fractera. Use this to answer ANY user question about what Fractera is, how it works, its architecture, components, modes, data ownership, pricing, use cases, partner program, etc. — especially while a deploy is running and the user wants to learn more. TOKEN-ECONOMY: call with NO arguments first to get the lightweight list of section ids+titles, then call again with a single section id to fetch just that section. NEVER try to fetch everything at once; pull only the section(s) relevant to the user question. Set lang:"ru" for Russian-speaking users.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoLanguage of the returned content. Defaults to "en". Use "ru" for Russian-speaking users.
sectionNoA section id from the list returned when called with no section. Omit to get the list (table of contents) first.
Behavior5/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the tool is safe. The description adds critical behavioral details: the token economy (call with no args for lightweight list, then with section id for full content), and the lang parameter for Russian users. No contradictions with annotations.

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-structured, starting with the purpose, then specific instructions, and a note on language. It is informative but slightly verbose; every sentence is useful, though some redundancy could be trimmed. Still, it remains clear and scannable.

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?

Given the absence of an output schema, the description fully explains what the tool returns: a lightweight list of section ids and titles when called with no arguments, or the full content of a specific section when called with a section id. It covers both invocation patterns and the lang parameter, making it complete for an agent to use correctly.

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 100% with both parameters described. The description adds meaning beyond the schema: it explains the exact usage pattern (omit section for table of contents, provide section id for content) and clarifies when to use the lang parameter. While the schema descriptions are adequate, the description enriches the context.

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 is a 'Project reference / help desk about Fractera' for answering any user question about Fractera. It distinguishes from siblings by specifying broad coverage (architecture, components, modes, etc.) while siblings like check_status or get_subdomain are more narrowly focused.

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?

Explicitly says 'use this to answer ANY user question about Fractera' and gives a when-not context: 'especially while a deploy is running and the user wants to learn more'. It provides a clear two-step process (token economy) with specific instructions on how to call the tool effectively.

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

get_subdomainGet Workspace AddressA
Read-only
Inspect

Return the final entry address of the server once installation is complete. In phase-1 (IP-first) this is a plain-HTTP Admin URL of the form http://:3002 — the server has NO domain and NO HTTPS cert yet (attaching a custom domain with HTTPS is an optional later step the user does inside Admin -> Personal Domain). Call this once after check_status reports status="done".

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idYesThe session_id used during installation.
Behavior5/5

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

Annotations already mark it as read-only and non-destructive. The description adds context about the phase-1 address format (HTTP, IP, no domain/HTTPS), which goes beyond annotations.

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?

Description is well-structured with purpose, format, and usage instructions in a few sentences. Slightly verbose but each sentence adds value.

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?

Given the simple single parameter and no output schema, the description fully covers what the tool returns and when to use it, including edge cases like phase-1 constraints.

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%; the description does not add meaning beyond the schema's description of the session_id parameter. Baseline score applies.

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 that the tool returns the final entry address of the server after installation, specifying the form in phase-1 and distinguishing it from siblings like check_status and get_project_info.

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

Usage Guidelines4/5

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

Explicitly says to call this after check_status reports 'done', providing clear usage context. Does not explicitly mention when not to use, but the instruction is sufficient.

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

get_vps_recommendationGet VPS RecommendationA
Read-only
Inspect

Return a single recommended VPS provider for users who do not yet have a server. Call this ONLY when the user explicitly says they have no server. The user buys the VPS at this provider and comes back with IP + password.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows the call is safe. The description adds workflow context (user buys and returns) that goes beyond the annotation's safety signal.

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 sentences, no filler. First sentence conveys purpose and condition, second sentence provides actionable next step. Front‑loaded and efficient.

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?

Adequate for a simple zero‑parameter tool, but lacks explicit description of the output format (e.g., expected fields like provider name, plan). With no output schema, the description should clarify what 'recommended VPS provider' means structurally.

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% with no parameters, so the baseline is 3. Description adds no parameter details, but none are needed.

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?

Clearly states the tool returns a single recommended VPS provider for users without a server. Unambiguous verb and resource, and distinguishes from sibling info tools by its specific subject.

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?

Explicitly states when to call: only when user explicitly says they have no server. Implies when not to use (if user has a server) and provides step‑by‑step expectation of subsequent user action.

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

register_and_deployDeploy Fractera WorkspaceA
Destructive
Inspect

Register a new Fractera user and start the deployment of their server in one atomic call. Use this AFTER you have collected the user's email (entered twice for typo protection), server IP, and root password. Creates the User row (or reuses an existing one with the same email), creates a free Subscription, creates a ServerToken, wipes any previous installation on the target server, and launches bootstrap. The deploy is IP-first (phase-1): the server comes up on plain HTTP at http://:3002 in 8-14 minutes; it does NOT get a domain or HTTPS cert here (that is an optional later step inside the workspace). Returns session_id (for a single on-demand check_status read — do not poll) and server_token (so the user can recover via retry_deploy if anything breaks). Call this AT MOST ONCE per conversation.

ParametersJSON Schema
NameRequiredDescriptionDefault
ipYesIPv4 address of the user's VPS, e.g. 185.10.20.30.
emailYesThe email the user typed (and confirmed by re-typing). Welcome / failure emails go here.
loginNoOptional — defaults to "root". Override only if the VPS provider gave a non-root username.
passwordYesRoot password for the VPS.
componentsNoOptional — which optional services to install. The only id is "memory" (LightRAG vector knowledge base). OMIT this to install it; pass an empty array [] for a plain server with NO AI at all. The server, database, storage, sign-in and Admin panel are always installed regardless.
terms_acceptedYesREQUIRED, must be true. Set this ONLY after the user has explicitly confirmed in the chat that they (1) have read and agree to Fractera's Terms of Service (https://www.fractera.ai/en/terms) and Privacy Policy (https://www.fractera.ai/en/privacy), and (2) understand they MUST change their server root password immediately after installation — Fractera never stores it and has no way to access the server afterwards. If the user has not given this explicit agreement, do NOT call this tool: ask for it first (and offer to explain the documents right in the chat).
email_confirmedYesREQUIRED, must be true. Set this ONLY after the user has typed their email a SECOND time (Q2) and the two entries match (case-insensitive, trimmed). Do not set it if you only asked once.
components_selectedYesREQUIRED, must be true. Set this ONLY after you have actually asked the component question (Q5) — told the user the full set is the default and asked, in three short steps, whether to keep all five coding assistants, Memory, and Brain. Pass it together with `components` (omit `components` or pass the full array = everything, [] = none, a subset = those). Do not set it if you skipped Q5.
Behavior5/5

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

Beyond the destructiveHint annotation, the description discloses exactly what happens: creates/reuses User, creates Subscription and ServerToken, 'wipes any previous installation,' and launches bootstrap. It also explains the IP-first HTTP deployment and notes that domain/HTTPS is deferred, adding material behavioral detail not inferable from annotations or schema.

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 lengthy but information-dense; every sentence adds critical operational detail for a complex, destructive action. It is front-loaded with purpose and flows logically through preconditions, effects, runtime behavior, return values, and usage constraints. Slightly overlong as a single paragraph, but no wasted words.

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 high-complexity deployment tool with no output schema and only two annotations, the description is remarkably complete: it covers preconditions, atomicity, side effects, deployment timeline, network protocol, return values, and interaction with sibling tools. This fully compensates for missing structured output metadata.

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%, so the schema already documents every parameter in detail. The main description adds context around the overall workflow but does not introduce new parameter-specific semantics beyond what the schema states, so the baseline of 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 opens with a specific verb+resource: 'Register a new Fractera user and start the deployment of their server in one atomic call.' It clearly distinguishes from siblings like retry_deploy and check_status by framing this as the initial deployment action.

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?

Explicit preconditions are stated ('Use this AFTER you have collected the user's email...'), and it specifies call frequency ('AT MOST ONCE per conversation'). It also directs to check_status for a single read and retry_deploy for recovery, giving clear when-to-use and when-not-to-use guidance.

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

retry_deployRetry Failed DeploymentA
Destructive
Inspect

Retry a failed deployment using a server_token (from the failure email, the deploy-progress UI, or the dashboard). Wipes the previous broken install and runs a fresh deploy on the SAME server. Returns a new session_id — poll with check_status. Use this when the user reports a failed deploy or pastes a server_token.

ParametersJSON Schema
NameRequiredDescriptionDefault
ipNoOptional — only pass if the user discovered the original IP was wrong (e.g. typo). Otherwise the stored IP is used.
loginNoOptional — Linux user, defaults to root.
passwordNoOptional — only pass if the user discovered the original password was wrong. Otherwise the stored password is used.
componentsNoOptional — same meaning as in register_and_deploy. OMIT to reinstall the full recommended toolset. Pass a subset (or [] for none) only if the user wants to change which AI tools are installed on this retry.
server_tokenYesThe unique server token the user received in the deploy-failure email, the active deploy UI, or the dashboard. Acts as the authorisation for this retry.
Behavior4/5

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

Annotations already indicate destructiveHint=true and readOnlyHint=false. The description adds context by stating 'Wipes the previous broken install', which reinforces the destructive behavior and explains what gets destroyed. It also discloses that the tool returns a new session_id, adding behavioral detail beyond annotations.

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 two sentences, front-loaded with the core action. Every phrase earns its place: source of token, destructive effect, fresh deploy, return value, and explicit usage trigger. No filler or repetition.

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?

Given the tool's complexity (destructive retry, multiple optional parameters), the description covers the key aspects: what it does, when to use it, behavior, and return with polling reference. No output schema exists, but the description compensates by mentioning session_id and check_status. Annotations cover safety, and schema covers all parameters.

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 100%, so baseline is 3. The description adds extra meaning by specifying the server_token sources (failure email, UI, dashboard) and clarifying that omitting components reinstalls the full recommended toolset. This goes beyond the schema field descriptions.

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 retries a failed deployment, with a specific verb ('Retry') and resource ('failed deployment'). It distinguishes from sibling tools by noting it wipes the previous broken install and runs a fresh deploy on the SAME server, and mentions returning a new session_id to poll with check_status.

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

Usage Guidelines4/5

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

The description explicitly says 'Use this when the user reports a failed deploy or pastes a server_token', providing clear usage context. It also references register_and_deploy for components, implying a distinction, but does not explicitly state when not to use it or name alternatives for exclusion.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources