Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Capabilities

Features and capabilities supported by this server

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

Tools

Functions exposed to the LLM to take actions

NameDescription
memory_readA

Fetch the full content of a specific memory. This is the only tool that returns content. Each read is tracked in the memory_accesses table.

memory_recallA

Search memory and return full content for the top results in a single call. Use this instead of memory_search + memory_read to reduce round trips.

Returns two lists:

  • memories: full content for the top read_k results (default 5)

  • also_matched: titles only for remaining results (for follow-up reads if needed)

Call this at the START of every task AND whenever you hit unfamiliar territory mid-task.

memory_storeA

Store a new memory. Call this whenever you learn something worth remembering across sessions -- novel insights, decisions, findings, patterns, or debugging solutions. Title (max 150 chars) must be a complete, descriptive thought, not a label. Another instance of you should judge relevance from the title alone. Content max 1500 chars; split larger ideas into multiple memories. Source: manual, conversation, or auto.

Rejects near-duplicates by default (threshold adjustable via claude-crowed threshold CLI). Set force=True to skip the duplicate check entirely.

memory_updateA

Update an existing memory, creating a new version. The old version is preserved but removed from the search index. Returns the new version's ID.

memory_deleteA

Soft-delete a memory. Always confirm with the user before deleting. Deletions are reversible with memory_undelete, but limited to 5 per session as a safety measure.

memory_undeleteB

Restore a soft-deleted memory.

memory_historyA

Retrieve all versions of a logical memory. Pass any version ID in the chain.

memory_timelineA

Browse memories chronologically with cursor-based pagination. Returns titles and metadata only.

memory_relatedB

Find semantically related memories via embedding similarity. Returns titles only.

memory_migrateA

Discover and read memory files (CLAUDE.md, auto-memory) for migration into crowed.

Returns file sections split by markdown headers. Review each section and decide whether it contains KNOWLEDGE (store with memory_store) or INSTRUCTIONS (skip).

  • With no path: discovers all migratable files (~/.claude/CLAUDE.md and auto-memory) and returns their sections.

  • With a path: reads and splits that specific file.

This tool does NOT store anything. You review the sections and call memory_store for each piece of knowledge you want to keep. Skip pure instructions.

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/TheNewJavaman/claude-crowed'

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