Skip to main content
Glama
squatch-c-c

squatch-codebook-mcp

by squatch-c-c

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

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

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

Tools

Functions exposed to the LLM to take actions

NameDescription
codebook_buildA

Index a local notes folder and return its codebook contents (id + title per note). Run this first to see what's in a directory. notes_dir is a local path; glob picks files.

codebook_queryB

Find the notes most related to a phrase, geometrically (no keyword match, no LLM).

codebook_relatedC

Notes related to a given note — geometric neighbors + algebraic link-recall combined.

codebook_neighborsC

Nearest notes to a given note by pure cosine similarity in the hypervector space.

codebook_walkB

Reasoning walk: from a note, repeatedly predict the next via the LINKS relation.

codebook_analogyC

Analogy a:b :: c:? over your notes (VSA transform), returns the best completions.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.4/5.0

Scored across 6 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: indexing, analogy, nearest neighbors, query by phrase, related notes, and reasoning walk. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent pattern: 'codebook_' prefix followed by a descriptive noun (analogy, build, neighbors, query, related, walk). No mixing of styles.

Tool Count5/5

With 6 tools, the server is well-scoped for its purpose of note indexing and geometric reasoning. Not too few or too many.

Completeness4/5

Covers indexing, various retrieval methods, analogy, and reasoning. Minor gap: no incremental note addition or update; only reindexing entire folders, which could be a limitation.