Skip to main content
Glama

salesleader-desk

Server Details

Read-only Sales Leader Guide desk: writers roster and magazine pieces. Public, no authentication.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.4/5.0
Disambiguation5/5

Each tool maps cleanly to either a single resource or a list operation, with get_magazine_piece/list_magazine_pieces and get_writer/list_writers clearly separated by cardinality. There is no overlap or ambiguity between the two resource types or their retrieval modes.

Naming Consistency5/5

All tool names follow a consistent get_/list_ verb prefix with a lowercase snake_case resource noun. The pattern is uniform and predictable across both writers and magazine pieces.

Tool Count5/5

Four tools is well-scoped for a focused read-only desk server exposing exactly two resources with list and detail retrieval. Each tool earns its place and there is no bloat or redundancy.

Completeness5/5

The tool surface fully covers the apparent read-only domain: listing and fetching both writers and magazine pieces covers all expected consumption workflows. No create/update/delete operations are implied by the server's purpose, so their absence is not a gap.

Available Tools

4 tools
get_magazine_pieceGet one magazine pieceA
Read-only
Inspect

Return one full juxtaposition piece: the question, each writer's section body, and the Editor's weaving coda.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesMagazine piece slug from list_magazine_pieces.

Output Schema

ParametersJSON Schema
NameRequiredDescription
slugYes
titleYes
editorYes
formatYes
questionYes
sectionsYes
generatedYes
editorCodaNo
api_versionYes
writerSlugsYes
canonicalUrlYes

TDQS

A4.3/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, covering the safety profile. The description adds a meaningful behavioral guarantee: it returns the full piece with named sections rather than a summary or list, with no implied side effects.

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 a single sentence with the action and object front-loaded, followed by a colon-delimited specification of the return contents. Every word earns its place, and there is no redundant information.

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?

With only one required parameter, safety annotations present, and an output schema available, the description sufficiently explains what the tool returns and where the slug comes from. Nothing critical is missing for an agent to select and invoke the tool correctly.

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%; the slug parameter is documented as 'Magazine piece slug from list_magazine_pieces.' The description adds no additional parameter nuance, so the baseline score 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 uses a specific verb ('Return') and resource ('one full juxtaposition piece'), and enumerates its contents: the question, each writer's section body, and the Editor's weaving coda. This clearly distinguishes it from sibling list tools and get_writer.

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 phrase 'one full' plus the schema's 'Magazine piece slug from list_magazine_pieces' makes the retrieval context clear: use this when you need a single complete piece after listing. It does not explicitly name alternatives, but the contrast with the sibling list tools is evident.

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

get_writerGet one writer's profileA
Read-only
Inspect

Return one desk writer's full roster record — pole, bio, tier, byline status, canonical URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesWriter slug from list_writers, e.g. ray-delgado.

Output Schema

ParametersJSON Schema
NameRequiredDescription
bioYes
poleYes
slugYes
tierYes
api_versionYes
canonicalUrlYes
display_nameYes
byline_allowedYes

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds useful content scope ('full roster record' plus fields) but no deeper behavioral context such as errors, prerequisites, or lookup behavior. No contradiction exists.

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?

One sentence, front-loaded with the action, and a compact field list. There is no filler or redundant restating of the tool name or schema.

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 simple, read-only, one-parameter tool with a full output schema, the description is complete enough. It tells the agent what will be returned, and the schema covers the required slug parameter.

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 schema fully documents the single parameter, including its source and an example ('Writer slug from list_writers, e.g. ray-delgado'). The description adds no parameter-specific detail, but the schema already carries that weight.

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 names a specific verb ('Return') and resource ('one desk writer's full roster record'), and it lists the concrete fields returned. This clearly distinguishes it from list_writers and get_magazine_piece by scope and resource type.

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 singular wording implies this tool is for fetching a single writer record, but the description never explicitly says when to prefer it over list_writers or what conditions rule it out. Routing to alternatives is left to inference.

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

list_magazine_piecesList generated magazine piecesA
Read-only
Inspect

List juxtaposition pieces generated by the writers' desk — title, format, question, contributing writers. Returns an honest empty array when no pieces have been generated yet (the corpus binding is not live; see AGENTS.md 'the corpus gap').

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax rows (default 50, max 200).

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYes
limitYes
piecesYes
api_versionYes
total_matchingYes

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the readOnly/openWorld/destructive annotations, the description discloses a key behavioral trait: it returns an honest empty array rather than an error when no pieces exist, and explains the 'corpus gap' with a pointer to AGENTS.md. This is valuable, non-obvious behavior.

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: the first front-loads the resource and output fields, the second adds the important empty-array caveat. 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 simple optional-limit list tool, the description covers behavior, scope, and output fields; annotations cover safety, and an output schema exists. Nothing necessary for a correct call is missing.

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 only parameter, limit, is fully described in the input schema with default and max values. The description adds no parameter-specific detail, so with 100% schema coverage 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 states a specific action ('List'), a precise resource ('juxtaposition pieces generated by the writers' desk'), and the returned fields (title, format, question, contributing writers). This clearly distinguishes it from the singular get_magazine_piece and list_writers.

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?

It is clear this is the listing tool for magazine pieces, and the empty-array note tells the agent that calling it is still appropriate when no pieces have been generated. It does not explicitly name alternative tools for single-piece or writer lookups, but the list scope is unambiguous.

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

list_writersList the SalesLeader writers' desk rosterA
Read-only
Inspect

List the four fictional staff writers on the SalesLeader desk — slug, display name, pole, bio, and byline status.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYes
writersYes
api_versionYes

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, so the safety profile is established. The description adds useful behavioral context: the result is a fixed set of exactly four fictional writers, avoiding expectations of arbitrary or paginated data.

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 a single, well-structured sentence that states the action, the scope, and the returned fields without any redundant wording. The most important information is front-loaded.

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 parameterless, read-only list tool with an output schema, the description is sufficiently complete. It tells the agent exactly what will be returned and the size of the result set, leaving no critical gap.

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 accepts zero parameters, so there is no parameter semantics burden on the description. The empty schema fully covers the input surface, and the description adds no conflicting or confusing parameter information.

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 states a specific verb ('List'), a specific resource ('the four fictional staff writers on the SalesLeader desk'), and enumerates the fields returned. It clearly distinguishes this list tool from sibling tools like get_writer or list_magazine_pieces.

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 context is clear: this tool lists the complete writer roster for the SalesLeader desk. It does not explicitly name alternatives such as get_writer for single-writer lookup, but the scoping is precise enough for an agent to infer when to use it.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updates
    • First observedget_magazine_piece
    • First observedget_writer
    • First observedlist_magazine_pieces
    • First observedlist_writers

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Provides read-only access to Mediawork's public directory of post-production and distribution vendors, FAQ, blog, and subscription plans through standardized MCP tools for searching and fetching records.
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Exposes the canonical WordCast knowledge surface — voice and TTS workflows, blog topics, FAQ, official links — to MCP-compatible AI clients. Read-only, no API keys required.
    2
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    A read-only MCP server that exposes Kettle Logic's published whitepapers, playbooks, and industry pages to AI agents through tools and resources, fetching content live from the public website.
    5
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources