← agentmemo.dev

INDIVIDUAL MCP TOOL

give_feedback

Update a memory's outcome (success/failure) after it was used.

agentmemo.devnone authenticationAvailability not checked

LIVE ENDPOINT

https://agentmemo.dev/mcp

No auth detected

Connect to this endpoint to inspect the live schema for give_feedback and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a write-action term.

Parent server

agentmemo.dev

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.agentmemo]
url = "https://agentmemo.dev/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "agentmemo": {
      "type": "http",
      "url": "https://agentmemo.dev/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: agentmemo
Remote MCP URL: https://agentmemo.dev/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": {
    "agentmemo": {
      "url": "https://agentmemo.dev/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "agentmemo": {
      "type": "http",
      "url": "https://agentmemo.dev/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "agentmemo",
  "transport": "streamable-http",
  "url": "https://agentmemo.dev/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • store_memory — Store a memory for a user/agent.
  • retrieve_memory — Semantically search a user's memories and return the most relevant ones, ranked by similarity.
  • forget_memory — Delete a specific memory by id, or all memories for a user (optionally an agent).
  • get_usage — Get usage for the calling API key: operations used this month, tier, and limit.
  • get_context — Get a user's memories pre-formatted for LLM system-prompt injection.
  • get_stats — Comprehensive memory statistics and quality score.