Skip to main content
Glama

Go Mod

go_mod
Read-onlyIdempotent

go.mod content.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
versionNo
module_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYesContent of the go.mod file
versionYesThe version string
module_pathYesThe module path

Schema Changelog

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

  1. Changed2 schema fields changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "module_path": "github.com/sirupsen/logrus",
      +    "version": "v1.9.3"
      +  },
      +  {
      +    "module_path": "github.com/google/uuid"
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "description": "go.mod file content for a module version",
      +  "properties": {
      +    "body": {
      +      "description": "Content of the go.mod file",
      +      "type": "string"
      +    },
      +    "module_path": {
      +      "description": "The module path",
      +      "type": "string"
      +    },
      +    "version": {
      +      "description": "The version string",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "module_path",
      +    "version",
      +    "body"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

D1.8/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds no behavioral context beyond the brief subject, missing details like error handling, rate limits, or what happens for missing module_path.

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

Conciseness2/5

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

Extremely short description is not helpful conciseness; it is under-specification. No front-loading of key information. Every sentence should earn its place, but this single phrase fails to convey essential purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has two parameters (one required), no schema description, but has an output schema, the description is wholly inadequate. It does not explain return values, prerequisites, or how the tool integrates with the domain.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, meaning the description does not explain parameters at all. The description adds no meaning beyond the schema, leaving the agent to guess the purpose of 'version' and 'module_path'. Baseline is low due to poor coverage.

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

Purpose2/5

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

The description 'go.mod content' is vague and does not specify what action the tool performs (e.g., retrieve, list, get). It hints at the subject but lacks a clear verb and resource distinction from siblings like 'module'.

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 guidance on when to use this tool versus alternatives. The sibling 'module' tool is related but no differentiation is provided. Agent has to infer usage from context.

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

B3.1/5.0
Disambiguation2/5

Several tool families overlap heavily: ask_pipeworx, ask_pipeworx_beta, and ask_pipeworx_grounded are near-identical entry points, while discover_tools/suggest_questions and entity_profile/compare_entities/recent_changes serve similar discovery/comparison roles. The polymarket_* cluster also has tightly related boundaries that require reading long descriptions to disambiguate, and version-related helper tools (go_mod, module, versions, version_info) add further confusion.

Naming Consistency3/5

Most tools follow a lowercase snake_case verb_noun pattern (list_subscriptions, resolve_entity, validate_claim), but there are notable deviations: bare verbs like remember/recall/forget, noun-only names like go_mod, module, versions, and version_info, and brand-prefixed names like ask_pipeworx and pipeworx_feedback. The naming is readable and generally predictable, yet the mix of conventions keeps it from being highly consistent.

Tool Count2/5

With 35 tools, the surface is heavy for what is ultimately a data-access and research server. Many tools are conveniences or meta-wrappers that could be consolidated (e.g., three ask_pipeworx variants, multiple polymarket scanners, several onboarding/discovery tools). While the breadth is intentional, 35 feels bloated rather than well-scoped.

Completeness4/5

The toolset covers a remarkably broad domain: universal data lookup, grounded fact-checking, entity resolution, company profiles, comparisons, prediction-market analysis, memory, subscriptions, and feedback. Minor gaps exist—subscriptions can be created/cancelled but not updated/paused, and there is no direct resolver for pipeworx:// citation URIs—but these are workable and core workflows have no dead ends.