Skip to main content
Glama
mikimatsub

swsd-mcp

by mikimatsub

swsd_search_solutions

Read-onlyIdempotent

Search SWSD knowledge-base for solution articles using free-text query or category, returning compact summaries with truncated excerpts.

Instructions

Search SWSD knowledge-base solution articles. Pass query for free-text search across titles and descriptions; pass category to filter to a category name. Returns compact summaries with truncated excerpts (240 chars). Use swsd_get_solution for the full HTML body of any one result. NOTE: search is asynchronously indexed — articles created or updated in the last few minutes (sometimes hours) may not appear yet. To verify a just-created article, use swsd_get_solution with the ID returned by swsd_create_solution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (1-indexed).
queryNoFree-text search across solution titles and descriptions. Empirically the canonical search parameter for SWSD solutions (verified against tenant 2026-05-03).
categoryNoFilter to solutions in this category name. Use swsd_list_categories to validate names.
per_pageNoResults per page (1-100).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
solutionsYes
paginationYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv2.3.1
    • addedInput schema / properties / category / maxLength
      Added value: +500
    • addedInput schema / properties / query / maxLength
      Added value: +2000
  2. First observedv2.1.0

TDQS

A4.7/5.0
Behavior5/5

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

The description discloses a non-obvious behavioral trait: search is asynchronously indexed, so recently created or updated articles may not appear for minutes or hours. It also states the return shape (compact summaries with 240-char truncated excerpts), which adds context beyond the readOnlyHint/idempotentHint annotations. No contradiction with annotations.

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?

Three sentences front-load the core action and parameters, then cover the key alternative and the indexing caveat. Every sentence carries distinct information, the async-indexing note is clearly marked, and there is no filler or repetition.

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 a rich output schema and strong annotations, the description covers everything an agent needs: what is searched, how to filter, what the return looks like, when to call an alternative, and a critical timing caveat. The routing to swsd_get_solution and mention of swsd_list_categories in the schema round out the contextual picture.

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%, so the baseline is 3. The description restates the roles of query and category in plain language but does not add meaningful parameter details beyond the schema (e.g., page, per_page are left to the schema). No parameter semantics are missing, but the description adds little beyond what the schema already provides.

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 SWSD knowledge-base solution articles.' It explicitly distinguishes itself from swsd_get_solution by noting that the search returns compact summaries while the sibling returns full HTML bodies, making the tool's role unambiguous among a large sibling list.

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?

The description gives direct routing guidance: use swsd_get_solution for the full HTML body of any result, and use swsd_get_solution to verify a just-created article because of async indexing. It also explains the exact combination of parameters to pass (query and/or category), clearly separating this tool from alternatives.

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