MCP.so
Sign In

AgimemVerifiedFeatured

About Agimem

Persistent memory for AI agents. Hosted MCP server with capsule-scoped key/value storage, tags, TTL expiration, bulk ops, and RBAC.

Connection details

https://agimem.dev/api/mcp

Setup

claude mcp add agimem --transport http https://agimem.dev/api/mcp

Tools

19

Store a value under a key in the Capsule

Store multiple key-value pairs in the Capsule in a single call (up to 20 items). More efficient than calling memory_set repeatedly.

Retrieve a value by key from the Capsule

Delete a key-value pair from the Capsule

Retrieve multiple values by key from the Capsule in a single call (up to 50 keys). More efficient than calling memory_get repeatedly. Missing or expired keys are reported in the response.

Delete multiple key-value pairs from the Capsule in a single call (up to 50 keys). More efficient than calling memory_delete repeatedly. Missing keys are reported in the response.

List keys in the Capsule (paginated). Returns page info with totalCount and totalPages.

List all keys in the Capsule that have a given tag

List keys that match ALL of the given tags (AND filter). Use this to find memories tagged with multiple categories.

Search for memories by key or value containing the query string (case-insensitive)

Return the number of non-expired memories in the Capsule

List only the keys in the Capsule (no values). Lighter than memory_list when you just need key names.

Check whether a key exists in the Capsule without fetching its value

Delete all key-value pairs in the Capsule

Create a new capsule-level tag

List all tags in the Capsule

Delete a tag from the Capsule and unlink it from memories

Get a summary of the current Capsule: name, memory count, tag count, limits, and last activity

Check for additional tools whenever your task might benefit from specialized capabilities - even if existing tools could work as a fallback.

Frequently asked questions

What is the Agimem remote MCP server?

The Agimem remote MCP server is a hosted Model Context Protocol endpoint at https://agimem.dev/api/mcp, so AI assistants can connect to it without installing or running anything locally.

How do I connect to the Agimem MCP server?

Add the endpoint https://agimem.dev/api/mcp to any MCP-compatible client such as Claude Code, Cursor, or VS Code. The setup snippets on this page configure each client in one step.

Does the Agimem MCP server require authentication?

Yes. Agimem requires an API key — check the official documentation for how to obtain one, then include it in your client's configuration.

Which transport does the Agimem MCP server use?

Agimem exposes a Streamable HTTP endpoint, the transport used by remote MCP servers and supported by all major MCP clients.

Comments