Files
Rohit Ghumare be89b222b0 feat: devin support (cli adapter, plugin, cloud mcp) (#1214)
* feat: devin support replacing windsurf

* feat: devin cli adapter, plugin manifest, and hook payload compat

* fix: stale tool counts in translations and cwd validation
2026-08-16 14:44:10 +01:00

32 lines
863 B
JSON

{
"name": "agentmemory",
"version": "0.9.29",
"description": "Persistent memory for AI coding agents. Captures sessions, recalls with hybrid BM25 + vector + graph search, and exposes 54 memory tools over MCP. Keyless by default, runs on your machine.",
"author": {
"name": "Rohit Ghumare",
"email": "ghumare64@gmail.com"
},
"homepage": "https://agent-memory.dev",
"repository": "https://github.com/rohitg00/agentmemory",
"license": "Apache-2.0",
"keywords": [
"memory",
"mcp",
"recall",
"knowledge-graph",
"agent-memory"
],
"mcpServers": {
"agentmemory": {
"command": "npx",
"args": [
"-y",
"@agentmemory/mcp"
],
"env": {
"AGENTMEMORY_URL": "${AGENTMEMORY_URL:-http://localhost:3111}",
"AGENTMEMORY_SECRET": "${AGENTMEMORY_SECRET:-}"
}
}
}
}