Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.agent-utils-ai]
url = "https://memory.agent-utils.ai/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"agent-utils-ai": {
"type": "http",
"url": "https://memory.agent-utils.ai/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: agent-utils-ai
Remote MCP URL: https://memory.agent-utils.ai/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"agent-utils-ai": {
"url": "https://memory.agent-utils.ai/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"agent-utils-ai": {
"type": "http",
"url": "https://memory.agent-utils.ai/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "agent-utils-ai",
"transport": "streamable-http",
"url": "https://memory.agent-utils.ai/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_memory— Retrieve a stored value by namespace and key.put_memory— Create a new memory entry.replace_memory— Update an existing memory entry.extend_memory_ttl— Extend the storage lifetime of an existing memory by N months.delete_memory— Delete a stored value.list_keys— List keys in a namespace with metadata (created_at, updated_at, updated_count, ttl, priority, last_modified_key_id).top_memories— Return the top N highest-priority non-expired keys in a namespace, ordered by priority descending.search_by_tag— Find (namespace, key) pairs with a given tag.