Skip to main content
Glama

Server Details

One command to validate, transform, and deduplicate — chain GoldenCheck + Flow + Match.

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
Repository
benseverndev-oss/goldenpipe
GitHub Stars
0
Server Listing
goldenpipe

Available Tools

3 tools
addAddAInspect

Adds two numbers and returns the sum.

ParametersJSON Schema
NameRequiredDescriptionDefault
aYes
bYes

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations, the description carries the full behavioral burden. It fully discloses the behavior: pure arithmetic addition with a returned sum. There are no side effects, external dependencies, or hidden behaviors for such a simple operation.

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, clear, front-loaded sentence. Every word earns its place, and there is no redundant or tangential 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?

For a tool with two simple numeric inputs, a precise operation, and a predictable output, the description plus input schema is complete. No output schema is needed because 'returns the sum' fully specifies the result.

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 provides only names and types for a and b, with no descriptions. The tool description says 'two numbers,' which loosely maps to a and b, but it does not add meaningful semantic context beyond what the schema already declares. For such simple numeric parameters, this is adequate, but the description does not significantly compensate for the 0% schema description 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 uses a specific verb and resource: 'Adds two numbers and returns the sum.' This clearly defines the tool's operation and output. There is no ambiguity between this and siblings like echo or server_time.

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 clearly implies when to use this tool: whenever an arithmetic sum of two numbers is needed. It does not explicitly discuss exclusions, but the sibling tools are unrelated, so no direct alternative-routing guidance is necessary.

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

echoEchoAInspect

Echoes the provided text back to the caller.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesText to echo back

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of disclosing behavior. It plainly states the exact behavior: the tool returns the provided text unchanged. No side effects, state changes, or external dependencies are indicated, and for an echo operation the description is sufficiently transparent.

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, clear sentence with no wasted words. Every element is meaningful, and the core behavior is front-loaded. There is no redundant information or over-explanation.

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 one simple parameter, no output schema, and no annotations, the description is fully complete. It tells the agent exactly what the tool does and what is required. Nothing needed for correct invocation 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 schema describes the only parameter 'text' as 'Text to echo back' with 100% coverage. The description adds no additional semantic information beyond referring to 'provided text', which maps directly to the parameter. This is the baseline 3 because the schema already does all the necessary documentation.

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 'Echoes the provided text back to the caller' uses a specific verb and resource, making the tool's function immediately obvious. It clearly distinguishes this tool from its siblings: add performs arithmetic and server_time returns time, while echo simply returns the input text.

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 description implies the usage context (when you need to return the exact text provided) but does not explicitly state when to use it over alternatives or provide any exclusions. Since the tool's function is self-evident and siblings are clearly different, the lack of explicit guidance is not problematic, but it is still not explicitly stated.

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

server_timeServer timeAInspect

Returns the current server time (ISO 8601, UTC).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations, the description carries full responsibility for behavior disclosure. It states exactly what the tool returns and in what format, implying a read-only operation with no side effects. This is sufficient for a simple clock tool.

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 that is efficient and front-loaded with the core action, followed by the precise output format. There is no unnecessary 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?

For a parameterless tool with no output schema, the description still tells the agent exactly what to expect: current server time in ISO 8601 UTC. Nothing essential is missing for an agent to call it 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?

The tool has zero parameters, so the schema already exhaustively covers all inputs. The description doesn't need to add parameter information, and the 0-parameter baseline of 4 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 the tool returns the current server time with the specific format and timezone (ISO 8601, UTC). This is distinct from sibling tools 'add' and 'echo', which obviously perform arithmetic and string echoing rather than a time lookup.

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 use case is clear: call when you need the current server time in UTC. No exclusions or alternatives are explicit, but the sibling tools are unrelated to time, so additional when-not guidance would add little value.

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. 7 tool updates
    • Addedadd
    • Addedecho
    • Removedexplain_pipeline
    • Removedlist_stages
    • Removedrun_pipeline
    • Addedserver_time
    • Removedvalidate_pipeline
  2. 4 tool updates
    • First observedexplain_pipeline
    • First observedlist_stages
    • First observedrun_pipeline
    • First observedvalidate_pipeline

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Provides safe, deterministic inspection, transformation, validation, and diffing of structured data (JSON, CSV, YAML, Parquet) via schema-aware MCP tools.
    4
    Apache 2.0
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables data-quality workflows by applying named, deterministic transformations to records and generating replayable lineage with content hashes, so users can verify that cleaned results follow exactly from raw inputs.
    -
  • A
    license
    Not graded
    quality
    B
    maintenance
    Provides deterministic tools for understanding, transforming, and verifying structured data via MCP, enabling rule inference from examples and verification of transformed records.
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Detects schema mismatches between data producers and consumers through static analysis, supporting extraction, comparison, code generation, and automated validation with watch mode for MCP tools, APIs, and service contracts.
    11
    28
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool performs a completely distinct operation: arithmetic, text echoing, and time retrieval. There is no overlap or ambiguity between them.

Naming Consistency4/5

Two tools use imperative verbs (add, echo) while server_time is a noun phrase, creating a minor inconsistency. However, all names are short, readable, and follow a simple style.

Tool Count5/5

With only three tools, the server is minimal but each tool serves a clear, separate purpose. The count is appropriate for a small utility server.

Completeness3/5

The tools are unrelated and there is no obvious missing operation for such a small utility set. However, the lack of a cohesive domain makes completeness difficult to fully assess.