Skip to main content
Glama

An MCP server that exposes Polypack as persistent adaptive memory. MCP-specific tools live here; the database remains an independent dependency.

Install and run

The simplest installation is from PyPI:

python3 -m pip install 'polypack-mcp[polypack]'

For one MCP client, use the default stdio server configuration. For Claude and Codex sharing the same durable memory, install once and create a long-running user service:

polypack-mcp setup --store ~/.local/share/polypack-mcp

This starts a stateless Streamable HTTP server at http://127.0.0.1:8765/mcp/, restarts it after a failure, and prints client configuration snippets. The setup command uses systemd --user; on systems without systemd, start the server directly:

polypack-mcp --transport streamable-http --port 8765 --store ~/.local/share/polypack-mcp

In shared Streamable HTTP mode, configure both clients with the URL. Do not configure them with a command and --store, since that starts two processes competing for the same durable store.

Codex (~/.codex/config.toml):

[mcp_servers.polypack]
  url = "http://127.0.0.1:8765/mcp/"

Claude Desktop:

{
  "mcpServers": {
    "polypack": { "url": "http://127.0.0.1:8765/mcp/" }
  }
}

Debian package

The Debian package installs and starts a system-level polypack-mcp service automatically. It runs as the dedicated polypack user, stores data in /var/lib/polypack-mcp, and exposes the same local Streamable HTTP endpoint:

sudo apt install ./polypack-mcp_<version>_amd64.deb

After installation, point Claude and Codex at http://127.0.0.1:8765/mcp/. The default port can be changed in /etc/default/polypack-mcp, followed by a service restart. The service can be managed with:

sudo systemctl status polypack-mcp
sudo systemctl restart polypack-mcp

The PyPI installation remains user-managed and uses polypack-mcp setup to create a per-user service instead.

Optional semantic retrieval

The default installation uses Polypack's local graph, activation, and lexical retrieval without downloading an AI model. To enable local Qwen semantic retrieval, run:

sudo polypack-mcp embeddings setup qwen3 --system --store /var/lib/polypack-mcp

This creates a managed localhost helper, downloads Qwen once into the store's embedding cache, and reindexes existing memories. The model is not bundled in the Debian/RPM package.

The helper loads Qwen3-Embedding-0.6B in bfloat16 (~1GB resident once loaded, versus ~2.4GB in fp32) and unloads it after 15 minutes of inactivity, reloading automatically on the next request. memory_recall results include a semantic entry in scoreComponents whenever the helper is reachable, alongside lexical and activation — the three sum to the reported score. If the helper is stopped or errors, recall falls back to lexical + activation scoring automatically. Check or disable it with:

polypack-mcp embeddings status
sudo polypack-mcp embeddings disable --system --store /var/lib/polypack-mcp

For a PyPI user service, omit sudo --system and use the user store:

polypack-mcp embeddings setup qwen3

APT repository

The latest Debian package is also published to the public APT repository at https://imattau.github.io/polypack-mcp. Configure it with the repository's signing key, then install and update normally:

curl -fsSL https://imattau.github.io/polypack-mcp/gpg.key \
  | sudo gpg --dearmor -o /usr/share/keyrings/polypack-mcp.gpg
echo "deb [signed-by=/usr/share/keyrings/polypack-mcp.gpg] https://imattau.github.io/polypack-mcp stable main" \
  | sudo tee /etc/apt/sources.list.d/polypack-mcp.list
sudo apt update
sudo apt install polypack-mcp

The repository is updated automatically for each v*.*.* release tag. See docs/apt-repository.md for maintainer setup instructions.

RPM package

RPM-based distributions can install from the public RPM repository:

sudo rpm --import https://imattau.github.io/polypack-mcp/rpm/RPM-GPG-KEY-polypack-mcp
sudo tee /etc/yum.repos.d/polypack-mcp.repo >/dev/null <<'EOF'
[polypack-mcp]
name=Polypack MCP
baseurl=https://imattau.github.io/polypack-mcp/rpm/
enabled=1
gpgcheck=1
gpgkey=https://imattau.github.io/polypack-mcp/rpm/RPM-GPG-KEY-polypack-mcp
EOF
sudo dnf install polypack-mcp

The matching .rpm asset is also attached to the GitHub release:

sudo dnf install ./polypack-mcp-<version>-1.x86_64.rpm

The RPM package provides the same systemd service, store location, localhost Streamable HTTP endpoint, and Python 3.12 requirement as the Debian package.

Related MCP server: Memory Server MCP

Run manually

pip install -e '.[polypack]'
polypack-mcp --store ./polypack-data

The server exposes seventeen focused tools: memory_store, memory_get, memory_update, memory_list_contexts, memory_delete, memory_recall, memory_context, memory_feedback, memory_suppress, memory_supersede, memory_consolidate, memory_link, memory_unlink, memory_thread, memory_store_batch, memory_link_batch, and graph_query. It also publishes context, active-memory, schema, stats, and agent workflow guidance resources under polypack://.

Memory classes are entity, episodic, procedural, and semantic. Store project or user preferences as procedural memories; preference is not a separate memory class.

When using a durable Polypack store, mutating operations checkpoint immediately and the server flushes the store during shutdown.

Retrieval tools return {items, metadata}. Metadata includes candidate and excluded counts, context matches, score components, fallback behavior, the retrieval version, and selection statistics. memory_context uses estimated tokens (ceil(content characters / 4), minimum one) as its token_budget. An item is never returned if it would exceed the remaining budget; budgets less than or equal to zero are rejected. Context is a soft preference: matching memories are preferred and unscoped global memories may be used as fallback. Pass strict_context: true for isolation. An empty isolated result reports reason: "no_context_match" and the searched context.

memory_recall can optionally hydrate related graph memories in the same call:

{
  "query": "identity cache fix",
  "context": "cross-agent",
  "include_neighbors": true,
  "edge_types": ["RESPONDS_TO"],
  "depth": 2,
  "neighbor_limit": 3,
  "limit": 20,
  "token_budget": 4000
}

Neighbor traversal is opt-in and bounded. limit caps the total response and neighbor_limit caps hydrated neighbors; metadata reports moreNeighborsAvailable when additional eligible neighbors were found. Neighbor items include their distance and connecting relationship metadata. Use memory_link with the default RESPONDS_TO relationship for handoffs, reviews, and fixes that address an earlier memory. Graph edges are authoritative for relationships; use graph_query(operation="relationship_diagnostics") to find legacy provenance.responds_to values that are not backed by edges. See polypack://help/workflow for the agent-facing workflow.

Feedback is activation feedback: useful=true reinforces a memory and useful=false provides negative retrieval feedback. Responses expose activation before and after plus whether learned weights changed. Supersession and consolidation materialize SUPERSEDES, SUPERSEDED_BY, and CONSOLIDATED_FROM graph edges.

Use memory_get for exact ID lookup and memory_update for mutable fields (context, confidence, provenance, and metadata). Content changes should use memory_supersede so history remains intact. Use memory_unlink to correct a relationship and memory_list_contexts to discover namespaces. memory_delete is permanent, requires confirm=true, and supports an optional revision check; prefer memory_suppress when retaining history is useful.

Pass --store to open a durable Polypack directory. Without it, the server uses the in-memory reference backend, which is convenient for smoke tests. The polypack extra requires polypack-db>=3.3.1 and uses its native ActivationEngine.working_memory selector for context assembly.

Development

pip install -e '.[dev]'
pytest

The test suite includes an MCP client/server protocol smoke test covering tool discovery, memory storage, recall, and resource reads.

Documentation

Available Tools

18 tools
graph_queryB

Inspect graph neighbors/schema or perform an advanced edge operation.

Prefer memory_link for normal memory relationships. Supported operations are neighbors, add_edge, schema, and relationship_diagnostics. RESPONDS_TO graph edges are authoritative; diagnostics identifies legacy provenance-only relationships.

ParametersJSON Schema
NameRequiredDescriptionDefault
idNo
typeNo
sourceNo
targetNo
operationYes

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations, so the description carries the full burden of behavioral disclosure. It does add useful semantic facts such as 'RESPONDS_TO graph edges are authoritative' and that diagnostics identifies legacy provenance-only relationships, but it never clarifies that add_edge mutates the graph, whether it requires special permissions, or what happens on unsupported/malformed operations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the core purpose. Every sentence earns its place: the scope, the sibling alternative, and the important authoritative-vs-legacy distinction. It could be slightly more structured, but it has no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a multi-purpose tool with five parameters, no output schema, no parameter documentation in the schema, and no annotations. The description tells which operations exist but not which fields are required or used for each operation, nor what the return shape or behavior is per operation. An agent would still need to guess several important details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It helps only for 'operation' by naming valid values at a high level, but the meaning and relationship of id, type, source, and target remain entirely unexplained. This is a substantial gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description says specific verbs and resources ('Inspect graph neighbors/schema' or 'perform an advanced edge operation') and distinguishes itself from memory_link for normal relationships. It lists concrete operations, so an agent knows what this tool covers without opening a sibling.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit guidance on when not to use it: prefer memory_link for normal memory relationships. It also enumerates supported operations, making alternative choices clear. It does not give full conditional guidance for each operation, but the main alternative is clearly identified.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_consolidateC

Consolidate source memories into one durable higher-level memory.

ParametersJSON Schema
NameRequiredDescriptionDefault
contentYes
contextNo
confidenceNo
source_idsYes
memory_classNosemantic

TDQS

C2.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description alone must disclose behavior. It says the result is a durable higher-level memory, but it does not say whether source memories are kept, deleted, modified, or linked, nor whether the operation has destructive side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one efficient sentence with the main action and result front-loaded. It is not bloated, though it sacrifices needed detail for brevity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With five parameters, no output schema, zero parameter coverage, and no annotations, a one-sentence description is severely incomplete. It omits parameter role, behavior on source memories, output/return behavior, and usage boundary with sibling tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. The phrase 'source memories' loosely maps to source_ids and 'one durable higher-level memory' maps to content, but context, confidence, and memory_class are completely unaddressed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear action and resource: consolidate source memories into one durable higher-level memory. It implies a merge/abstraction operation that is conceptually distinct from store, recall, link, or supersede siblings, though it does not explicitly name alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance about when to use this tool versus siblings like memory_store_batch, memory_link, or memory_supersede. The context is only implicit in the word 'consolidate'; the description does not state prerequisites, exclusions, or suitable scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_contextB

Return a working-memory set selected by activation and estimated-token budget.

token_budget is an estimated-token budget. Each returned memory fits wholly within the remaining budget; budgets must be greater than zero.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
contextYes
token_budgetNo
strict_contextNo

TDQS

B3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must disclose behavioral traits. It does disclose a key constraint: 'Each returned memory fits wholly within the remaining budget; budgets must be greater than zero.' However, it does not state whether the operation is read-only, what happens on insufficient budget, how activation affects results, or any ordering/pagination behavior. The single disclosed constraint is useful but incomplete.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise—two sentences—with the primary purpose front-loaded. Every word adds value, and the token_budget constraint is clearly separated. No filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 4 parameters, no output schema, and no annotations, the description is incomplete. It omits meanings of limit, context, and strict_context, does not describe the output format or ordering, and gives no indication of safety or side effects. It also does not help the agent distinguish this tool from memory_recall. Significant gaps remain for correct invocation and interpretation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description should compensate. It explains token_budget semantics explicitly, but leaves limit, context, and strict_context unexplained. The mention of 'activation' in the first sentence does not map directly to any parameter, leaving most inputs ambiguous. The partial coverage of one parameter is insufficient for a 4-parameter tool with zero schema based documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verbs and resource: 'Return a working-memory set' selected by activation and token budget. It distinguishes itself from siblings (memory_recall, memory_store) by focusing on a set selected by activation/budget, but does not explicitly contrast with them. The purpose is specific and actionable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives like memory_recall or memory_store. The description explains what it does but not under what conditions an agent should choose it. There is no mention of exclusions, prerequisites, or typical use cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_deleteA

Permanently delete one memory and its graph edges.

This destructive operation requires confirm=true. Prefer memory_suppress when retaining history is useful.

ParametersJSON Schema
NameRequiredDescriptionDefault
confirmNo
memory_idYes
expected_revisionNo

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the safety burden. It discloses that the operation is destructive, permanent, affects graph edges, and needs confirmation. While it doesn't cover every edge case (e.g., revision conflict behavior), it transparently conveys the core side effects and safeguards.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences carry complete high-level guidance: the action, the destructive nature, the confirmation gate, and the alternative. There is no filler or redundancy, and the most critical information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple, one-required-param delete tool, the description provides the essential behavioral context: what is deleted, how to confirm, and when to choose an alternative. The only meaningful gap is the role of expected_revision and the lack of any return-value hint, but neither prevents correct invocation in the common case.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It explains that confirm must be true, which is important, but it says nothing about expected_revision or its semantics for concurrency control. memory_id is self-evident, but expected_revision remains unclear to an agent without additional inference.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description opens with a specific verb and resource ('Permanently delete one memory') and adds scope ('and its graph edges'). It clearly distinguishes this hard-delete operation from siblings like memory_suppress and memory_update, so an agent can identify the intent without reading schemas.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states the confirmation requirement ('requires confirm=true') and names an alternative with a condition ('Prefer memory_suppress when retaining history is useful'). This gives the agent both a prerequisite and a clear routing rule versus a sibling tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_feedbackB

Record whether a retrieved memory helped this task.

Call this after using a recalled memory when it was useful or misleading.

ParametersJSON Schema
NameRequiredDescriptionDefault
usefulYes
agent_idNodefault
memory_idYes

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Since no annotations are provided, the description carries the full burden of behavioral disclosure. It states that feedback is recorded and when, but it does not explain whether the feedback modifies future retrievals, whether repeated feedback for the same memory_id overwrites prior feedback, or whether this action is reversible. These are meaningful gaps for a memory-system tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is exceptionally concise: two short sentences with no filler. It front-loads the core action and then adds the practical timing/condition in the second sentence. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

While the tool is simple, there is no output schema and no annotations, so the description must fully support invocation and behavior expectations. It omits the meaning of agent_id, whether feedback is appended or overwrites, and what the tool does after being called. Given these gaps, the definition is not complete enough on its own.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description needs to compensate for the parameter definitions, but it only mentions a 'retrieved memory' and 'useful or misleading'. It does not explain what memory_id refers to, how the 'useful' boolean maps to those outcomes, or what agent_id and its default mean. The agent must largely guess the parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Record' and the resource: whether a retrieved memory helped the task. It further clarifies its purpose by specifying the timing 'after using a recalled memory when it was useful or misleading', which distinguishes it from siblings like memory_store and memory_recall without explicitly naming them. The small deduction is for lacking an explicit sibling contrast, but the overall purpose is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives an explicit condition: 'Call this after using a recalled memory when it was useful or misleading.' This tells the agent when to use the tool but not when not to use it or when to choose an alternative, leaving a minor gap for an otherwise simple operation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_getA

Fetch one memory by exact ID, including its current state and revision.

ParametersJSON Schema
NameRequiredDescriptionDefault
memory_idYes

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses that this is a read-style operation ('Fetch') and that the result includes 'current state and revision', but it does not mention missing-ID behavior, permissions, or whether revision history is also returned. This is minimally transparent but not misleading.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence with no filler. Every phrase earns its place: the action, the key constraint ('exact ID'), and the expected content are all included.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter get-by-ID tool, the description is mostly complete: it states what is fetched and what the response includes ('current state and revision'). There is no output schema, so a bit more detail about not-found behavior would improve it, but the core call path is sufficiently clear.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There is only one parameter (memory_id) and schema description coverage is 0%, so the description must compensate. It adds that the lookup is by 'exact ID', which clarifies that fuzzy matching is not appropriate, but it does not explain ID format, provenance, or error behavior. The added meaning is modest but useful.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Fetch') with a clear resource ('one memory by exact ID') and explicitly names the returned content ('current state and revision'). This clearly distinguishes it from fuzzy/semantic retrieval tools like memory_recall or batch operations like memory_store_batch.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'by exact ID' implies this tool is for precise lookups when an ID is already known, but it does not explicitly state when to use memory_recall or other memory tools instead. There is no when-not-to-use guidance or mention of alternatives, so usage context is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_list_contextsA

List context namespaces and the number of memories in each.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It makes the read-only enumeration behavior clear by using 'List' and describes the returned information. It does not mention edge cases such as whether empty namespaces are included or whether results are ordered, but for a zero-parameter listing tool these are minor omissions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, compact sentence that front-loads the action and the result. Every word contributes meaning, and there is no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a very simple tool with no parameters and no output schema. The description states both what is listed and what metric is returned (memory counts per namespace), which is sufficient for an agent to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool accepts zero parameters and the input schema has no properties, so there is nothing for the description to add about parameters. The baseline of 4 for a no-parameter tool applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'List' with a clear resource ('context namespaces') and states the exact output ('the number of memories in each'). It is unambiguous and unlikely to be confused with the sibling tools, though it does not explicitly call out how it differs from any sibling.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended usage is implied: an agent should use this tool when it needs an overview of context namespaces and their memory counts. However, there is no explicit guidance about when not to use it or which alternative sibling tool to choose instead.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_recallA

Search memories by text, context, activation, and confidence.

Use this for a targeted question. Use memory_context to assemble working context. Context is soft by default; use strict_context=true for isolation. With include_neighbors=true, bounded graph neighbors are hydrated into the result. Filter relationships with edge_types such as RESPONDS_TO. The neighbor_limit bounds hydrated neighbors; limit remains the total result count. depth is silently clamped to at most 3 hops regardless of the value passed; metadata reports the depth actually applied. Metadata also reports when additional neighbors were available.

ParametersJSON Schema
NameRequiredDescriptionDefault
depthNo
limitNo
queryYes
contextNo
edge_typesNo
token_budgetNo
neighbor_limitNo
strict_contextNo
include_neighborsNo

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of disclosing behavior, and it does so extensively. It reveals that context is soft by default, depth is silently clamped to at most 3 hops, metadata reports the actual depth, and metadata also reports when additional neighbors were available. These are genuine behavioral insights beyond what the schema alone could possibly convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: purpose first, then usage guidance, then edge-case behaviors. Every sentence contributes meaningful operational knowledge, and there is no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity — 9 parameters, no annotations, and no output schema — the description is unusually thorough, covering neighbor hydration, depth limits, metadata reporting, and context semantics. It falls slightly short only by omitting token_budget and by not describing the overall return shape beyond mentioning metadata and result counts.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate, and it largely does. It explains context/strict_context, include_neighbors, edge_types, neighbor_limit versus limit, and depth clamping. However, token_budget is never mentioned, leaving one of nine parameters completely undocumented in behavior and meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with a specific verb and resource: 'Search memories by text, context, activation, and confidence.' It clearly identifies what the tool does and distinguishes it from memory_context by explicitly naming that sibling as the alternative for assembling working context. The occasional mention of activation and confidence could be slightly ambiguous relative to the schema, but the core purpose is unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit guidance: 'Use this for a targeted question' and 'Use memory_context to assemble working context.' It also explains when to change behavior with strict_context=true for isolation and how neighbor inclusion works. This is clear, decision-relevant usage guidance with an explicit alternative.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_storeB

Store durable project memory.

Use procedural for preferences, conventions, and decisions; semantic for stable facts; episodic for events or task outcomes; and entity for named people, projects, or objects. Use a stable context for project memory.

ParametersJSON Schema
NameRequiredDescriptionDefault
contentYes
contextNo
metadataNo
confidenceNo
provenanceNo
memory_classNosemantic

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description itself carries the burden of disclosing runtime behavior. It adds the useful detail that memory is 'durable,' but it does not say whether the call creates or updates an existing memory, whether it may overwrite previous data, what will be returned or persisted, or any notable side effects. That is a significant transparency gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is brief, front-loaded with the primary purpose, and contains no filler or repetition. Every line contributes either to the core verb/resource definition or to the distinction among memory classes needed for correct invocation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With six parameters, no output schema, no annotations, and a large sibling toolset, the description leaves important context unstated. An agent cannot determine what the tool returns, how this differs from batch storage or recall, whether context is mandatory, or how memory behaves when stored again.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

This description is the only documentation for parameters since schema description coverage is 0%. It valuably explains the memory_class enum values and advises about the context parameter. Still, metadata, confidence, and provenance receive no meaningful explanation, so it only partially compensates for the missing schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Store durable project memory.' This clearly communicates the tool's core function. However, it does not differentiate itself from sibling tools like memory_store_batch or memory_recall, so it falls short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides solid guidance for the memory_class parameter, mapping procedural, semantic, episodic, and entity memory types to concrete usage patterns. However, it does not say when to choose this tool over related siblings such as memory_store_batch, memory_recall, or memory_suppress, and it offers no explicit exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_store_batchA

Store multiple durable project memories in a single batch.

Each item in the list should be a dict with 'content' and optional 'memory_class', 'context', 'confidence', 'provenance', and 'metadata' keys.

ParametersJSON Schema
NameRequiredDescriptionDefault
memoriesYes

TDQS

A4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Without annotations, the description carries the full burden of behavioral disclosure, but only says the memories are 'durable' and stored as a batch. It does not mention whether writes overwrite existing memories, what happens on partial failure, whether any permissions are required, or what is returned to the caller.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loads the purpose, and then gives the necessary item-shape guidance without unnecessary padding. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the single-parameter schema and no output schema, the description covers the main operational need: what to pass in each memory item. It is not fully complete because the semantics and types of optional fields like memory_class, confidence, provenance, and context are left undefined, but the core invocation detail is covered.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides only an array of untyped objects, so the description compensates by specifying that each item must be a dict with 'content' and optional keys like 'confidence' and 'metadata'. This is useful, though it does not explain the meaning or expected type of each optional key.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'store' with the resource 'durable project memories' and the qualifier 'in a single batch'. This clearly distinguishes it from sibling memory_store by emphasizing batch operation, making the tool's purpose immediately identifiable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'multiple ... in a single batch' provides clear context for when this tool should be used, i.e., when storing several memories at once. However, it does not explicitly mention memory_store as the single-item alternative or state when not to use this tool, so it lacks explicit exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_supersedeA

Replace an outdated fact while retaining its history.

ParametersJSON Schema
NameRequiredDescriptionDefault
new_memory_idYes
old_memory_idYes

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of explaining behavior. It does reveal an important trait: the old fact is not wiped but retained in history. It does not clarify the resulting status of the old memory, whether the new memory must already exist, or whether the operation is reversible.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One short sentence states both the primary operation and the most valuable behavioral consequence with no filler. Every word is functional.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a two-parameter memory operation, the description is minimally viable: it communicates the main action and the history-preserving behavior. It stops short of guiding the agent on prerequisites, expected outcomes, or return values, which matters because no output schema or annotations are available.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explicitly map the two required IDs to 'new memory' and 'old memory'. The parameter names carry most of the meaning, and the description adds only indirect context by referring to an outdated fact and retaining history.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific action ('Replace') and a clear object ('an outdated fact'), and the qualifier 'while retaining its history' differentiates this from related memory operations such as memory_suppress or memory_store. The purpose is immediately identifiable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'outdated fact' implies the appropriate use case: to exchange a stale memory for a current one. However, the description does not give explicit when-not-to-use guidance or name an alternative tool for the comparison, leaving the usage context mostly inferred.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_suppressC

Inhibit a stale or unhelpful memory without deleting it.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountNo
memory_idYes

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It usefully states the operation is non-destructive ('without deleting it'), but it does not explain whether the inhibition is reversible, what 'inhibit' actually changes about the memory, or how the 'amount' affects the behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no filler. It states the action, target, and a key constraint efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations, no output schema, and a schema with undocumented parameters, this description is too sparse. An agent would know what kind of memory to target but would not understand how the amount parameter behaves, whether suppression is reversible, or what the tool returns after execution.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description adds no meaning for either parameter. memory_id is obvious but still undocumented, and amount is not explained at all, leaving its scale, units, and effect entirely unclear.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description gives a specific verb ('inhibit') and a resource ('a stale or unhelpful memory'), and clarifies that suppression does not delete the memory. It does not, however, distinguish itself from the similarly-named sibling memory_supersede, so it stops short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'stale or unhelpful memory' implies when the tool should be used, but the description gives no explicit comparison to siblings like memory_supersede or memory_feedback, and does not state when it should not be used.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_threadB

Walk the RESPONDS_TO chain from a starting memory ID and return the thread.

Retrieves connected memories in both directions along RESPONDS_TO edges, returning them sorted chronologically.

ParametersJSON Schema
NameRequiredDescriptionDefault
start_idYes
max_depthNo

TDQS

B3.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the burden of behavioral disclosure. It does reveal useful behavioral traits: traversal happens in both directions along RESPONDS_TO edges and results are sorted chronologically. It does not mention output shape, errors, or edge-case behavior, but the core runtime behavior is transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded, giving the essential operation in the first sentence and then enriching it with directional and ordering details in the second. There is minor redundancy between 'return the thread' and 'returning them sorted chronologically', but the overall structure is efficient and readable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has no output schema and no annotations, so the description carries significant responsibility. It conveys the main purpose, starting point, traversal direction, and sort order, but it leaves max_depth semantics and the exact shape of the returned thread unstated, which leaves room for an agent to misread the tool's limits.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for both parameters. It clarifies 'start_id' as the starting memory ID, but it never explains 'max_depth', such as whether it limits the number of hops or nodes. Given that one of the two parameters is effectively undocumented, the parameter semantics are incomplete.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool walks the RESPONDS_TO chain starting from a memory ID and returns the thread, which is a specific verb and resource. It also adds detail about bidirectional traversal and chronological ordering, but it does not explicitly distinguish itself from siblings like memory_context or graph_query.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when a thread of connected memories is needed, but it provides no explicit when-to-use guidance, exclusions, or references to alternative tools. An agent must infer the appropriate use case solely from the tool name and the word 'thread'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_updateA

Update mutable memory fields without changing its content.

Supported fields are context, confidence, provenance, and metadata. Use memory_supersede when the memory content itself needs to change. expected_revision prevents overwriting a concurrent update.

ParametersJSON Schema
NameRequiredDescriptionDefault
patchYes
memory_idYes
expected_revisionNo

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral burden. It discloses that content is preserved, enumerates mutable fields, and explains that expected_revision prevents overwriting a concurrent update. It does not cover return values, error behavior, or permissions, but the core mutation semantics are transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences, front-loaded with the primary behavior, followed by supported fields, the sibling alternative, and the concurrency note. Every sentence adds value and there is no filler or repetition of schema details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 3-parameter update tool with no annotations and no output schema, the description covers purpose, allowed patch fields, the key alternative, and the expected_revision parameter. It omits error handling and return behavior, but an agent has enough context to invoke the tool correctly in typical cases.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description compensates by naming the supported patch fields and giving expected_revision its concurrency-protection meaning. memory_id is self-explanatory from its name, though patch value types are not specified; overall the essential parameter semantics are provided beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: 'Update mutable memory fields without changing its content.' The explicit boundary between updating fields and content, plus the list of supported fields, makes the purpose clear and distinguishes it from memory_supersede and other siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly directs the agent to 'Use memory_supersede when the memory content itself needs to change,' providing a clear when-not-to-use condition. The description also implies when memory_update is appropriate: when only context, confidence, provenance, or metadata need updating.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool updatev0.1.27
    • Addedmemory_store_with_link
  2. 5 tool updatesv0.1.24
    • Addedmemory_delete
    • Addedmemory_get
    • Addedmemory_list_contexts
    • Addedmemory_unlink
    • Addedmemory_update
  3. 7 tool updatesv0.1.16
    • Changedmemory_consolidate1 field changed
      • addedInput schema / properties / memory_class / enum
        Added value: +[
        +  "entity",
        +  "episodic",
        +  "procedural",
        +  "semantic"
        +]
    • Addedmemory_link
    • Addedmemory_link_batch
    • Changedmemory_recall5 fields changed
      • addedInput schema / properties / depth
        Added value: +{
        +  "default": 1,
        +  "title": "Depth",
        +  "type": "integer"
        +}
      • addedInput schema / properties / edge_types
        Added value: +{
        +  "anyOf": [
        +    {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "title": "Edge Types"
        +}
      • addedInput schema / properties / include_neighbors
        Added value: +{
        +  "default": false,
        +  "title": "Include Neighbors",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / neighbor_limit
        Added value: +{
        +  "default": 1,
        +  "title": "Neighbor Limit",
        +  "type": "integer"
        +}
      • addedInput schema / properties / token_budget
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "integer"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "title": "Token Budget"
        +}
    • Changedmemory_store1 field changed
      • addedInput schema / properties / memory_class / enum
        Added value: +[
        +  "entity",
        +  "episodic",
        +  "procedural",
        +  "semantic"
        +]
    • Addedmemory_store_batch
    • Addedmemory_thread
  4. 8 tool updatesv0.1.3
    • First observedgraph_query
    • First observedmemory_consolidate
    • First observedmemory_context
    • First observedmemory_feedback
    • First observedmemory_recall
    • First observedmemory_store
    • First observedmemory_supersede
    • First observedmemory_suppress

TDQS

A3.6/5.0
Disambiguation5/5

Each tool has a clearly distinct role: store, link, retrieve, suppress, supersede, consolidate, batch, and graph diagnostics are all explicitly separated. Even near-overlapping pairs like memory_store/memory_store_with_link and memory_link/graph_query are carefully disambiguated in their descriptions.

Naming Consistency4/5

The memory_* prefix provides a strong, predictable namespace, and most tools follow a clear verb-like pattern: store, update, delete, recall, link, unlink. Minor deviations like memory_context, memory_thread, and memory_feedback are noun-oriented, and graph_query breaks the memory_ prefix pattern, so it is not perfectly uniform.

Tool Count3/5

At 18 tools, the server is above the ideal 3-15 range and feels somewhat heavy. However, the batch variants, store-with-link convenience, and full memory lifecycle tools are mostly justified by the breadth of the domain.

Completeness5/5

The tool surface covers memory CRUD, batch operations, graph edge management, retrieval modes, lifecycle transitions, feedback, and context assembly. There are no obvious dead ends or missing operations for a project-memory and relationship-graph server.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    Provides AI with persistent memory management including short-term memory (FIFO queue), long-term memory (graph-based storage with associations), and thought process management with multiple cognitive modes for continuous learning and reasoning.
    24
    19
    3
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Provides persistent memory storage with advanced features like tagging, content search, and expiration settings. It enables users to create directed links between stored memories to build structured relationships and knowledge graphs.
    12
    17
    ISC
  • F
    license
    B
    quality
    D
    maintenance
    Enables persistent memory for AI systems by providing tools for episodic, semantic, and procedural data storage through a vector-and-graph-enhanced database. It allows models to maintain long-term continuity using similarity search, thematic clustering, and identity tracking.
    24
    1
    -
  • A
    license
    A
    quality
    C
    maintenance
    Provides persistent memory capabilities for AI assistants, enabling storage, recall, and analysis of information across conversations with intelligent memory management.
    25
    92
    MIT

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/imattau/polypack-mcp'

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