Buildd Memory
Shared team memory for AI agents. Postgres-backed, MCP-native.
Endpoints
GET /api/memories/context— Markdown context for agent injectionGET /api/memories/search— Search memories (compact index)GET /api/memories/batch?ids=...— Fetch full content by IDsPOST /api/memories— Create a memoryGET /api/memories/:id— Get single memoryPATCH /api/memories/:id— Update a memoryDELETE /api/memories/:id— Delete a memoryGET /api/keys— List API keysPOST /api/keys— Create API keyGET /api/health— Health check
MCP Integration
Add to your .mcp.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["@buildd/memory"],
"env": {
"MEMORY_API_URL": "https://memory.buildd.dev",
"MEMORY_API_KEY": "mem_your_key_here"
}
}
}
}