Skip to main content
Glama

Show an example Skillfolio profile

show_example_profile
Read-only

Returns a real, live Skillfolio profile so you can show someone what one looks like instead of describing it. Use when someone is curious about the product or asks what a profile contains.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
answerYesA description of a real published profile.
sourceYesThe profile’s public URL.

Schema Changelog

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

  1. Added

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds the valuable detail that it returns a 'real, live' profile (not a mock or synthetic example), which gives the agent useful context about the nature of the returned data without contradicting 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.

Conciseness5/5

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

The description is two sentences with no wasted words. The first sentence immediately states the action and outcome, and the second gives the precise usage context. Every word earns its place.

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 zero-parameter, read-only tool with an output schema, the description is complete. It covers what the tool returns, why someone would use it, and when to invoke it. Sibling differentiation is implicit but sufficient.

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 schema coverage is 100% (trivially, since the schema is empty). Baseline for no parameters is 4, and the description adds no parameter-specific information because none is 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?

The description clearly states it 'Returns a real, live Skillfolio profile' and positions it as a demonstration tool ('show someone what one looks like instead of describing it'). This distinguishes it from the sibling get_profile, which implies retrieval of a specific profile, while show_example_profile is explicitly an example.

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?

Provides clear context: 'Use when someone is curious about the product or asks what a profile contains.' It does not explicitly list when not to use it or name alternative tools, but the usage scenario is well-defined and the example nature is apparent.

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.2/5.0
Disambiguation4/5

Tools are mostly distinct: about covers product overview, get_pricing covers pricing, get_profile and show_example_profile both surface profile content but differ in purpose (lookup by handle vs. random example), how_to_get_started and start_profile_draft both relate to profile creation but one is instructions and the other is actual creation. Descriptions are detailed enough to disambiguate.

Naming Consistency4/5

All tool names use snake_case and mostly follow an action_noun pattern (about, get, how_to_get_started, show, start). The pattern is a mix of verbs and phrases but consistent in style. Minor inconsistency: 'about_skillfolio' uses 'about' instead of a verb like 'get_info' or 'describe', but it's readable.

Tool Count5/5

With 6 tools, the server is well-scoped for a product information and profile creation assistant. Each tool serves a distinct purpose and the count is within the ideal range (3-15). No bloat or sparsity.

Completeness4/5

The server covers key user journeys: learning about the product, pricing, getting started, seeing an example, looking up a published profile, and creating a draft. Minor gaps: no tool to update a profile, view interview answers directly (though it's included in get_profile/show_example_profile), or manage subscription, but these are not central to the assistant's purpose.

Resources