HUSK

MCP Tools Overview

All available MCP tools at a glance.

HUSK exposes the following tools via the MCP endpoint. Each tool has a cost annotation so your AI client can make informed decisions about when to call them.

Tools

ToolDescriptionCost
searchSemantic similarity search across memoriesEmbedding + DB read
rememberStore a new memory with dedup checkingEmbedding + vector search + DB write
forgetDelete a memory by IDDB write + vector delete
list_memoriesList all memories with optional filtersDB read only
list_projectsList known projects (distinct git remotes)DB read only
session_contextCompact index of recent sessionsDB read only
get_session_detailFull session details with observationsDB read only
get_observationSingle observation with full contentDB read only
get_uncompressed_observationsUncompressed observations for client-side compressionDB read only
compress_observationsMark observations compressed + store summaryEmbedding + DB write
linkCreate a typed edge between two memoriesDB write only
unlinkRemove an edge by IDDB write only
relatedFind direct neighbors of a memoryDB read only
traverseWalk the graph via BFSMultiple DB reads

Prompts

PromptDescription
meditateGuided memory cleanup — finds duplicates, contradictions, stale entries
compress_sessionClient-side observation compression — summarize and store

All "DB read only" tools are cheap and fast. Tools that involve embedding calls go through Ollama, which adds latency depending on your hardware.

On this page