← Back to Plugins
MCP Server MCP

io.github.DiaaAj/a-mem-mcp

github By github 👁 1 views ▲ 0 votes

Self-evolving memory system for AI agents

Homepage Verified source GitHub

Install

uvx a-mem

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "pypi",
      "identifier": "a-mem",
      "version": "0.2.1",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "LLM backend to use (openai, ollama, sglang, or openrouter)",
          "format": "string",
          "default": "openai",
          "name": "LLM_BACKEND"
        },
        {
          "description": "LLM model name (e.g., gpt-4o-mini, llama2, etc.)",
          "format": "string",
          "default": "gpt-4o-mini",
          "name": "LLM_MODEL"
        },
        {
          "description": "OpenAI API key (required if LLM_BACKEND=openai)",
          "isRequired": true,
          "format": "string",
          "isSecret": true,
          "name": "OPENAI_API_KEY"
        },
        {
          "description": "Sentence transformer model for embeddings",
          "format": "string",
          "default": "all-MiniLM-L6-v2",
          "name": "EMBEDDING_MODEL"
        },
        {
          "description": "ChromaDB storage directory path",
          "format": "string",
          "default": "./chroma_db",
          "name": "CHROMA_DB_PATH"
        }
      ]
    }
  ]
}
mcp model-context-protocol pypi

Comments

Sign in to leave a comment

Loading comments...