Skip to main content
Glama

Server Quality Checklist

75%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: search performs live searches and logs them, auth_status is a read-only credential preflight, and verify_log validates audit log integrity. There is no overlap or ambiguity between them.

    Naming Consistency4/5

    All names use lowercase snake_case, which is consistent in style. However, 'search' and 'verify_log' are verbs while 'auth_status' is a noun phrase, so the verb_noun pattern is not perfectly uniform across the set.

    Tool Count5/5

    Three tools is well-scoped for this server's narrow purpose: search, credential verification, and log verification. Each tool earns its place, and the count is within the ideal range.

    Completeness4/5

    The core workflow (search with audit logging, credential check, log verification) is well covered. A minor gap is that there is no tool to directly read the audit log entries, only to verify their integrity, but this appears intentional for security and is not a critical omission.

  • Average 5/5 across 3 of 3 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 56 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • This repository is licensed under Apache 2.0.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • This server has been verified by its author.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior5/5

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

    No annotations are provided, so the description carries the full burden. It thoroughly discloses that the tool is read-only, idempotent, safe to repeat, makes a lightweight verification call, never writes to the audit log, and never mutates credential storage. It even details the error behavior for unsupported platforms. This is exemplary transparency.

    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 long but well-organized into clear segments: purpose, usage, behavioral disclaimers, parameters, examples, and return format. It contains minimal redundancy, though 'read-only' and 'never writes to the audit log' are repeated across sentences. Still, every paragraph adds needed nuance, so it's appropriately sized for a tool with no annotations.

    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?

    Given the tool has one parameter, no annotations, and no schema-level parameter docs, the description covers all necessary aspects: what the tool does, when to invoke it, its exact behavioral constraints, accepted parameter values, example calls, and the detailed return shape. Even though an output schema exists, the description goes beyond it by explaining success/failure semantics. Nothing critical is missing.

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

    Parameters5/5

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

    The schema merely defines `platform` as a string with 0% description coverage. The description compensates fully by specifying allowed values ('reddit' or 'youtube'), the structured error for other values, and example calls. This is exactly the kind of added meaning needed for correct invocation.

    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 opens with a specific verb+resource: 'Read-only check of whether BYOK credentials are already stored and still valid for a platform.' It clearly distinguishes this from siblings by noting it should be called before `search` and that it does not touch the search API or audit log. The tool's limited scope (verification only) is unambiguous.

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

    Usage Guidelines5/5

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

    Provides explicit when-to-use guidance: 'Call this before `search` to confirm credentials are configured and working, or whenever an agent needs to report connection health.' It also explains what it is not for (setting/clearing credentials) and contrasts with remote mutability. This is direct, actionable context for an agent.

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

  • Behavior5/5

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

    With no annotations, the description carries full weight and discloses critical side effects: makes a live network call consuming rate limits, appends a tamper-evident hash-chained entry to the audit log on success, is not read-only, and returns an error string rather than throwing an exception. This is thorough behavioral disclosure.

    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?

    Though lengthy, the description is well-structured: purpose/constraints, usage guidelines, side effects, parameter details, examples, and return format. Every sentence adds necessary information; there is no redundancy or filler, making the length appropriate for the tool's complexity.

    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?

    Given the tool has 9 parameters, no annotations, and an output schema is referenced but not detailed, the description covers all necessary context: prerequisite credentials, platform-specific restrictions, failure modes (missing credentials, unsupported platform), side effects, return shape, and pagination. It is fully complete for an agent to select and invoke correctly.

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

    Parameters5/5

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

    The input schema has 0% description coverage and only parameter titles, but the description fully compensates by explaining each parameter's purpose, platform-specific applicability (e.g., subreddit for reddit only, channel for youtube only), defaults, caps (max_results capped at 100 for reddit and 50 for youtube), and even example calls. This adds substantial meaning beyond the schema.

    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 opens with a specific verb and resource: 'Search Reddit or YouTube through its official, documented API... and return matching posts/videos as structured JSON.' It also distinguishes itself from sibling tools by explicitly directing credential checks to auth_status, making the purpose unmistakable.

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

    Usage Guidelines5/5

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

    It provides explicit when-to-use ('Call this whenever an agent needs recent or historical public content... for research, monitoring, or compliance review') and when-not-to-use (platforms other than reddit/youtube, credential checks). It names auth_status as the cheaper alternative for credential validation, satisfying the need for alternatives.

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

  • Behavior5/5

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

    With no annotations provided, the description fully discloses read-only behavior ('opens and reads the log file but never writes'), idempotency, the prerequisite of an existing log file, and the structured failure mode instead of raising an exception. It also explains return values on both success and failure, leaving no behavioral ambiguity.

    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 detailed but tightly organized, moving from purpose to usage, safety, prerequisite, parameter format, and return value. No sentence is redundant; each adds necessary information for correct invocation.

    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?

    The description covers all relevant aspects: what the tool verifies, when to call it, read-only guarantees, prerequisites, parameter semantics, and return values including failure cases. It is self-sufficient for an agent to select and invoke correctly.

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

    Parameters5/5

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

    Though the schema only shows an optional path with a default of null, the description explains the default value (`./auditreach.log.jsonl`), gives example calls, and clarifies that the path points to the log file. This adds essential meaning beyond the schema.

    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 opens with a specific verb and resource: 'Verify that the local hash-chained audit log has not been tampered with' and explains the method (walking entries and confirming hash chains). This clearly distinguishes it from siblings like search and auth_status.

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

    Usage Guidelines5/5

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

    It explicitly states when to call — 'before sharing the log with a third party, after any manual edit to the log file, or periodically as a trust check' — and clarifies when not needed: 'it does not need to run before every search'. This provides clear usage boundaries relative to the search sibling.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

auditreach MCP server

Copy to your README.md:

Score Badge

auditreach MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/RudrenduPaul/auditreach'

If you have feedback or need assistance with the MCP directory API, please join our Discord server