Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose with no overlap: complete_node marks nodes as done, get_due_items retrieves due items, quick_capture saves new nodes, search_nodes searches existing nodes, and snooze_node defers resurfacing. The descriptions make it easy to distinguish between creation (quick_capture), retrieval (get_due_items, search_nodes), and modification (complete_node, snooze_node) operations.

    Naming Consistency5/5

    All tools follow a consistent verb_noun naming pattern with snake_case: complete_node, get_due_items, quick_capture, search_nodes, and snooze_node. The verbs are clear and appropriate (complete, get, capture, search, snooze), and the nouns consistently refer to nodes or items, creating a predictable and readable set.

    Tool Count5/5

    With 5 tools, this server is well-scoped for managing nodes/items in a productivity or note-taking system. Each tool earns its place by covering core operations: capture (quick_capture), retrieval (get_due_items, search_nodes), and status updates (complete_node, snooze_node). The count is neither too thin nor bloated, fitting typical workflows efficiently.

    Completeness4/5

    The tool set provides strong coverage for a node management system, including creation, retrieval, and modification (completion and deferral). A minor gap exists in update operations for node content or metadata beyond scheduling, but agents can work around this by capturing new nodes. Core workflows like inbox review and search are well-supported, with no dead ends.

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

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

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • 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.

  • This repository includes a glama.json configuration file.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • 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

  • Behavior2/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 of behavioral disclosure. It states the tool 'gets' items, implying a read-only operation, but doesn't specify if it requires authentication, has rate limits, returns paginated results, or what format the output takes. This is a significant gap for a tool with no annotation coverage.

    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 extremely concise and front-loaded, consisting of a single, clear sentence that directly states the tool's purpose. There is no wasted verbiage, making it efficient for quick understanding.

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

    Completeness2/5

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

    Given the complexity (one parameter with nested structure), no annotations, and no output schema, the description is incomplete. It doesn't cover behavioral aspects like safety or performance, parameter usage, or output format, leaving the agent with insufficient information to use the tool effectively.

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

    Parameters2/5

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

    The schema description coverage is 0%, with one parameter ('state') that includes a nested object property ('includeOverdue'). The description adds no information about parameters—it doesn't explain what 'state' means, how 'includeOverdue' affects results, or any other input details. With low schema coverage, the description fails to compensate, resulting in poor parameter documentation.

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

    Purpose4/5

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

    The description clearly states the tool's purpose with a specific verb ('Get') and resource ('items due for review'), and clarifies these are 'inbox items'. However, it doesn't differentiate this tool from sibling tools like 'search_nodes' or 'snooze_node', which might also deal with items/nodes, so it doesn't reach the highest score.

    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?

    The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'search_nodes' (which might search for items) or 'complete_node' (which might mark items as done), leaving the agent without context for tool selection.

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

  • Behavior2/5

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

    With no annotations provided, the description carries full burden for behavioral disclosure. 'Save a new node' implies a write operation, but it doesn't mention permissions required, whether this creates permanent records, error conditions, or what happens on success. The 'optional scheduling' hint is minimal behavioral context.

    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, efficient sentence that immediately conveys the core functionality. Every word earns its place: 'Save' (action), 'new node' (resource), 'optional scheduling' (key feature). No wasted words or unnecessary elaboration.

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

    Completeness2/5

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

    For a write operation tool with no annotations and no output schema, the description is insufficient. It doesn't explain what 'saving' entails (persistence level, where saved), what the optional scheduling does, or what happens after invocation. The agent lacks crucial context for proper tool selection and use.

    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 has 0% description coverage, but the single parameter 'state' is a nested object with well-described sub-properties (title, note, url, tags, resurfaceIn). The description mentions 'optional scheduling' which aligns with 'resurfaceIn', adding some semantic context beyond the schema's technical descriptions.

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

    Purpose4/5

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

    The description clearly states the action ('Save a new node') and the resource ('node'), with the additional feature of 'optional scheduling' distinguishing it from basic creation tools. However, it doesn't explicitly differentiate from sibling tools like 'complete_node' or 'snooze_node' which also manipulate nodes.

    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?

    The description provides no guidance on when to use this tool versus alternatives like 'complete_node' or 'snooze_node'. It mentions 'optional scheduling' but doesn't clarify when scheduling is appropriate versus other node operations, leaving the agent to guess based on tool names alone.

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

  • Behavior2/5

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

    With no annotations provided, the description carries full burden for behavioral disclosure. It mentions 'full-text and semantic search' which gives some context about search methodology, but doesn't describe what 'saved nodes' are, how results are returned, whether there's pagination, authentication requirements, rate limits, or error conditions. For a search tool with no annotation coverage, this leaves significant behavioral gaps.

    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 extremely concise at just 7 words, front-loading the core functionality without any wasted words. Every element ('search', 'saved nodes', 'full-text and semantic search') contributes directly to understanding the tool's purpose. The structure is optimal for quick comprehension.

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

    Completeness2/5

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

    For a search tool with 4 nested parameters, no annotations, and no output schema, the description is insufficiently complete. It doesn't explain what constitutes a 'saved node', how search results are structured, what 'semantic search' entails operationally, or any limitations of the search functionality. The combination of complex parameters and lack of structured metadata requires more descriptive context than provided.

    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 description provides no parameter information beyond the tool name's implication of searching. With 0% schema description coverage, the description doesn't compensate by explaining what parameters are available or their purposes. However, the schema itself is well-structured with clear property descriptions for query, tags, status, and limit, establishing a baseline understanding despite the description's lack of parameter details.

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

    Purpose4/5

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

    The description clearly states the action ('search') and resource ('saved nodes'), specifying both full-text and semantic search capabilities. It distinguishes this from sibling tools like 'complete_node' or 'get_due_items' by focusing on search functionality rather than modification or retrieval of specific items. However, it doesn't explicitly differentiate from potential search alternatives within the toolset.

    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 is provided on when to use this tool versus alternatives. The description doesn't mention any prerequisites, context for use, or comparisons with other tools. While sibling tools like 'quick_capture' or 'snooze_node' serve different purposes, there's no explicit direction on when search is appropriate versus those operations.

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

  • Behavior2/5

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

    With no annotations provided, the description carries full burden but offers minimal behavioral insight. 'Defer resurfacing' implies a mutation (snoozing), but it doesn't disclose permissions needed, whether the action is reversible, rate limits, or what happens to the node's state. It lacks details on effects like notifications or updates to due dates.

    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, efficient sentence with no wasted words. It's front-loaded and appropriately sized for the tool's complexity, making it easy to parse quickly.

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

    Completeness2/5

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

    Given the tool's complexity (mutation with nested parameters), lack of annotations, and no output schema, the description is incomplete. It doesn't cover behavioral aspects, parameter details, or return values, leaving significant gaps for an AI agent to understand and invoke the tool 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 description has 0% schema description coverage, but it compensates by implying the purpose of the single parameter (a state object for deferral). However, it doesn't explain the nested 'nodeId' and 'until' fields or their formats. Since there's effectively 1 parameter (the state object), the baseline is high, but some semantic gaps remain.

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

    Purpose3/5

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

    The description 'Defer resurfacing to a later date' is vague about what 'resurfacing' means and what resource is being acted upon. It doesn't clearly distinguish this from sibling tools like 'complete_node' or 'get_due_items'. While it hints at postponing something, it lacks specificity about the 'node' resource mentioned in the schema.

    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 is provided on when to use this tool versus alternatives like 'complete_node' or 'search_nodes'. The description doesn't mention prerequisites, context (e.g., when a node needs deferral), or exclusions. It's a standalone statement with no comparative context.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries full burden. It states the action ('mark as done') but doesn't disclose behavioral traits like whether this is a mutation (implied by 'mark'), what permissions are required, if changes are reversible, side effects (e.g., triggers notifications), or response format. For a mutation tool with zero annotation coverage, this is a significant gap.

    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, efficient sentence with zero waste. It's front-loaded with the core action and appropriately sized for a simple tool. Every word earns its place, making it easy to parse quickly.

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

    Completeness2/5

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

    Given the tool's complexity (mutation with 1 parameter, nested object, no annotations, no output schema), the description is incomplete. It lacks details on behavior, usage context, parameter semantics, and expected outcomes. For a tool that modifies state, this minimal description leaves critical gaps for an AI agent to operate effectively.

    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 description has 0 parameters explicitly mentioned, but the input schema has 1 parameter (nodeId) with 0% schema description coverage. The description implies a 'node' parameter through context, but doesn't add details beyond what's inferred. With only one parameter and no schema descriptions, the baseline is high, but the description doesn't fully compensate for the coverage gap by explaining parameter meaning or constraints.

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

    Purpose4/5

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

    The description 'Mark a node as done' clearly states the action (mark) and resource (node) with a specific verb and object. It distinguishes from siblings like 'get_due_items' (read) or 'snooze_node' (delay), but doesn't explicitly differentiate beyond the basic action. The purpose is unambiguous but could be more specific about what 'done' means in this context.

    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?

    The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., node must exist, be in a certain state), exclusions (e.g., cannot mark already-done nodes), or relationships to sibling tools like 'snooze_node' for deferring completion. Usage is implied only by the action name.

    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

Resurgo-MCP MCP server

Copy to your README.md:

Score Badge

Resurgo-MCP 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/code-atlantic/Resurgo-MCP'

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