Skip to main content
Glama

profile

get_availability

Current availability, work scope, and the contact boundary (no raw email is published).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observed

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description must carry the transparency burden. It discloses a key limitation ('no raw email is published') and implies a contact boundary, but it does not describe the return format or any other behavioral traits such as data freshness or access restrictions.

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 a single concise sentence, front-loaded with the core content ('Current availability'). While it is a fragment rather than a full sentence, it avoids unnecessary words and is appropriately sized for a simple getter.

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?

This is a simple tool with no parameters and no output schema, so the description must explain the return value. It lists the information provided (availability, work scope, contact boundary) and one limitation, but it does not specify the structure or format of the returned data, leaving some ambiguity.

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?

The tool has zero parameters, and the input schema is an empty object. Since parameter semantics are not applicable, the baseline of 4 is appropriate; the description does not need to add parameter details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the resource ('current availability, work scope, and the contact boundary') and the tool name 'get_availability' implies a retrieval operation. However, it lacks an explicit verb and does not distinguish itself from sibling tools like get_profile_summary.

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

Usage Guidelines2/5

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

No usage guidance is provided. The description does not mention when to use this tool instead of alternatives such as get_profile_summary or search_faq, nor does it specify any context or prerequisites.

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

A4/5.0
Disambiguation5/5

Each tool targets a distinct resource or retrieval purpose: availability, profile summary, single project, proof, project list, and FAQ search. Although get_profile_summary includes availability, its purpose as a consolidated summary is clearly separated from get_availability's focused availability/work-scope lookup.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern (get_*, list_*, search_*). This makes the tool set predictable and easy to navigate.

Tool Count5/5

Six tools is well scoped for a portfolio/profile server. Each tool covers a distinct read-only information need without unnecessary duplication or bloat.

Completeness5/5

The set covers the apparent domain comprehensively: profile entity, availability, project listing/detail, proof retrieval, and FAQ search. No obvious dead ends or missing operations for a public read-only profile service.

Resources