Documentation
Everything you need to build memory-enabled agents with Agentverse Memory.
Getting Started
liveConnect your first agent to Agentverse Memory in under 5 minutes.
MCP Integration
live35 tools over JSON-RPC 2.0. Works with Claude Desktop, Cursor, LangChain, CrewAI.
Python SDK
soonFirst-party Python SDK — coming soon (not yet on PyPI). Use the MCP endpoint + cURL today.
TypeScript SDK
soonFirst-party TypeScript SDK — coming soon (not yet on npm). Use the MCP endpoint + cURL today.
API Reference
live35 MCP tools documented with parameters, return types, and examples.
Architecture
liveHow GraphPalace works: TF-IDF extraction, LadybugDB graph engine, pheromone retrieval.
5-minute quickstart (MCP + cURL)
Full guide →# 1. Get a free API key (returns { "key": "am_..." })
curl -X POST https://am-server-jbneh74b5q-uc.a.run.app/v1/keys \
-H "Content-Type: application/json" \
-d '{"agent_id":"my-agent","tier":"explorer"}'
export AM_API_KEY="am_..." # the "key" field from the response
# 2. Store an episode — no LLM at write time ($0 ingest)
curl -X POST https://am-server-jbneh74b5q-uc.a.run.app/mcp \
-H "X-API-Key: $AM_API_KEY" -H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{
"name":"memory_store_episode",
"arguments":{"content":"Alice approved the Q3 budget on Tuesday"}}}'
# 3. Search — hybrid retrieval (TF-IDF + dense, RRF), default-on
curl -X POST https://am-server-jbneh74b5q-uc.a.run.app/mcp \
-H "X-API-Key: $AM_API_KEY" -H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{
"name":"memory_search_episodes",
"arguments":{"query":"budget decisions","limit":5}}}'
# → { "results": [...], "count": 1, "retrieval": "hybrid" }API Reference 35 MCP tools
memory_store_episodeStore a time-stamped event. No LLM at write time — sub-ms in-process engine write op.memory_get_episodesRetrieve episodes with filtering and paginationmemory_search_episodesNatural-language search over episodes — hybrid retrieval (TF-IDF + dense, RRF), default-onmemory_search_timelineTime-windowed episode searchmemory_consolidate_episodesMerge related episodes into a consolidated recordmemory_store_entityStore a named entity with type and metadatamemory_get_entityRetrieve a specific entity by name or IDmemory_list_entitiesList all entities with optional type/metadata filtersmemory_store_relationStore a directed relationship between entitiesmemory_get_relationsGet all relations for a given entitymemory_query_graphStructured query over the knowledge graphmemory_semantic_searchSemantic similarity search across all memory typesmemory_get_neighborsGet immediate neighbors of a nodememory_graph_add_tripleAdd a (subject, predicate, object) triple directlymemory_graph_neighborsExtended neighbor query with depth and filtersmemory_graph_shortest_pathFind shortest path between two entitiesmemory_store_procedureStore a skill definition: goal → steps → outcomememory_get_procedureRetrieve a procedure by IDmemory_match_procedureSearch procedures by goal descriptionmemory_update_procedureUpdate steps or log execution outcomememory_set_workingSet a key-value pair with optional TTLmemory_get_workingGet a working memory valuememory_list_workingList all active working memory keysmemory_clear_workingClear all working memorymemory_deposit_pheromoneManually deposit a pheromone trace on a node or edgememory_get_pheromoneRead current pheromone weight (decay-adjusted)memory_create_shared_spaceCreate a shared memory space with JWT/DID access controlmemory_join_shared_spaceJoin an existing space via invite tokenmemory_shared_store_entityStore an entity into a shared spacememory_shared_queryQuery across all agents in a spacememory_list_shared_spacesList spaces the agent belongs tomemory_get_statsGet usage stats, op counts, rate limit statusmemory_delete_agentPermanently delete all memories for an agentmemory_find_pathA* pathfinding between two concepts (Builder+ tier)memory_traverse_graphBFS/DFS multi-hop graph traversal (free on every tier)Full parameter documentation, request/response schemas, and code examples are in the API Reference. Questions? Join Discord.
Questions? We're in Discord.
The team responds daily. Ask about integration, architecture, or roadmap.
Join Discord