Skip to main content
Glama
emretheus
by emretheus

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
CLAUDE_CONFIG_DIRNoWhere Claude Code stores its logs. Default: ~/.claude~/.claude
CLAUDE_REMIND_DIRNoWhere the index is persisted. Default: ~/.claude-remind~/.claude-remind

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
remind_searchA

Search past Claude Code sessions for solutions to recurring problems. Returns BM25-ranked hits with a snippet, a solvedHint, a messageUuid, and a ready-to-paste claude --resume <id> command.

When to use: at the start of a task to check for prior work on the same codebase; or when the user mentions an error, tool, or feature they may have already solved. One call is usually enough — only re-call with a different query if the first returned no useful hits.

Query tips: use specific concrete terms — exact error strings (ExpiredTokenException, LoginRefreshRequired), tool/lib names (BuildKit, Cognito, Tailwind), or real file paths (tailwind.config, shared_auth/jwt.py). Avoid generic words that flood the corpus (e.g. AWS, auth, docker on their own). Good: ExpiredTokenException SendSSHPublicKey. Bad: AWS auth issue.

Cost: ~1–2 KB per call at default (5 hits, 1000-char snippets). Use format: "compact" (400 chars) for cheap scans, format: "full" (2000 chars) when you need to read in place. After finding a relevant hit, call remind_message with its messageUuid to read the full content.

remind_messageA

Fetch the full text of a specific past message, plus optional surrounding turns. Returns up to ~10 KB; the matched message is flagged with isFocus: true inside the returned window.

When to use: only after remind_search returns a messageUuid whose snippet looks promising but is truncated. Don't call this for every search hit — pick the one or two most relevant first. If you want a structural overview of the whole session (tools, files, errors), call remind_session instead.

To read the entire session, omit messageUuid (capped at 50 messages).

remind_sessionA

Get a structured summary of one past session: title, message count, tool names used, files touched, error count, time span, solved hint, and the last user message. Cheap (~1 KB).

When to use: when a remind_search hit looks relevant and you need the bigger picture (was this session productive? which tools/files were involved?) before drilling into specific messages. Requires a sessionId — the 8-char prefix from a search hit is enough. To read message bodies, use remind_message instead.

remind_resumeA

Resolve a (full or 8-char prefix) session id into a ready-to-run claude --resume <id> command, plus the session's cwd and git branch.

When to use: only when you already have a sessionId in hand and need just the resume command. remind_search already returns resumeCommand on every hit, so prefer that. This tool exists for cases where the user pastes a bare sessionId or a previous tool flow stored only the id.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/emretheus/claude-remind-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server