gridwork-wiki
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| query_regulationA | Ask a compliance question and get answers from the knowledge base. Searches across GDPR, EU AI Act, CCPA/CPRA, software licensing, and web accessibility articles. Returns relevant articles with key points and cross-references. |
| search_wikiA | Search the compliance wiki for articles matching keywords. Returns ranked results with relevance scores and match context. Filter by domain for targeted searches. |
| get_articleA | Read the full content of a specific wiki article by its slug. Use search_wiki first to find relevant slugs, then get_article to read the full content. |
| list_articlesA | List all wiki articles, optionally filtered by compliance domain. Returns title, slug, summary, and domain for each article. |
| check_complianceA | Quick compliance check — describe your system or situation and get relevant regulatory requirements. Combines search across all domains to identify which regulations apply. |
| wiki_statsA | Get statistics about the compliance knowledge base — article counts, word counts, domains covered, and generation date. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Most tools have clearly distinct purposes: stats, search, list, and article retrieval are unambiguous. However, query_regulation and check_compliance both accept a natural language input and return regulatory information, which could lead to misselection if an agent doesn't carefully consider the nuance.
Five of six tools follow the verb_noun pattern (query_regulation, search_wiki, get_article, list_articles, check_compliance). The outlier is 'wiki_stats', which is a noun_noun compound rather than an imperative verb phrase, creating a minor inconsistency.
Six tools is well-scoped for a read-only compliance wiki server. Each tool serves a distinct function—statistics, semantic query, keyword search, article retrieval, listing, and compliance checking—with no redundancy or bloat.
The tool set covers all natural operations for a knowledge base: discovering articles via search/list, retrieving full content via get_article, querying by semantic intent, and summarizing overall statistics. There are no dead ends; agents can always find a path from discovery to full article access.