Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
SSW_RULES_REPO_URLNoGit repo URL for auto-clonehttps://github.com/SSWConsulting/SSW.Rules.Content.git
SSW_RULES_QDRANT_URLNoQdrant server URLhttp://localhost:6333
SSW_RULES_CONTENT_PATHNoPath to SSW.Rules.Content repo~/.config/ssw-rules-mcp/data/SSW.Rules.Content
SSW_RULES_QDRANT_COLLECTIONNoQdrant collection namessw-rules

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}

Tools

Functions exposed to the LLM to take actions

NameDescription
search_rulesA

Semantic search across all SSW Rules (https://ssw.com.au/rules).

Returns matching rules with title, URL, description, and relevance score. Requires Qdrant to be running and indexed (run 'ssw-rules index' first). Falls back to text search if Qdrant is unavailable.

get_ruleA

Get the full content of a specific SSW Rule by its URI slug.

Returns the rule's title, URL, metadata, and full cleaned markdown content. The content has JSX components stripped for clean reading.

list_categoriesB

List all SSW Rules categories in the hierarchy.

Returns top-level categories (e.g. Software Engineering, Communication) with their subcategories and rule counts.

get_category_rulesA

Get all rules in a specific category.

Works for both top-level categories (returns all rules across subcategories) and subcategories (returns just that subcategory's rules).

get_recent_rulesC

Get recently updated SSW Rules.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 5 tools

Disambiguation5/5

Each tool targets a distinct retrieval mode: recent updates, semantic search, full rule content by slug, category hierarchy, and category-filtered rules. There is no overlap that would lead an agent to misselect.

Naming Consistency5/5

All tools follow a clear snake_case verb_noun pattern (get_recent_rules, search_rules, get_rule, list_categories, get_category_rules). Minor verb variation between get and list is standard and predictable.

Tool Count5/5

Five tools form a tight, well-scoped set for a read-only rules knowledge base. No redundant or missing operations are apparent at this scale.

Completeness5/5

The set covers discovery (recent, search, categories) and retrieval (full rule content, category-filtered lists). For a read-only reference, the surface is complete with no dead ends.

Maintenance

ActivityInactive
ResponsivenessNo issues