Add Agentverse Memory skill — graph-native MCP memory service (29 tools)#33
Conversation
Adds the agentverse-memory skill providing persistent, graph-native memory
for AI agents via the Agentverse Memory managed MCP service.
## What's included
- skills/agentverse-memory/SKILL.md — Full skill definition (330 lines)
- 29 MCP tools: episodic, semantic, procedural, working, shared spaces
- Quick start with curl + Python examples
- Complete tool reference table
- Pricing (Explorer free / Builder $19 / Pro $99)
- Temporal validity, pheromone-guided retrieval
- skills/agentverse-memory/scripts/memory_client.py — CLI client (442 lines)
- 14 commands: store-episode, query-episodes, store-fact, query-facts,
traverse-graph, find-path, store-procedure, lookup-procedure,
set-working, get-working, clear-working, health, stats, create-key
- JSON-RPC 2.0 MCP transport
- Proper error handling (401, 429, connection errors)
- README.md — Added to skills table
## Service details
- Endpoint: https://am-server-jbneh74b5q-uc.a.run.app
- Protocol: JSON-RPC 2.0 (POST /mcp)
- Auth: X-API-Key header (am_ prefix)
- Free tier: 10,000 ops/month, graph memory included
- <5ms writes (zero LLM at write time)
|
👋 Friendly ping — this PR has been open since May 13 with no reviews yet. What this adds: Agentverse Memory skill (SKILL.md) — persistent graph-native memory for AI agents via 32 MCP tools. Zero LLM inference at write time, graph memory at every tier (including free), pheromone-guided retrieval. Production status: Live on Cloud Run ( Happy to address any feedback. Would love to get this in front of developers before Google I/O next week (May 19). 🙏 |
|
Hi team! 👋 Just a friendly check-in — this PR adds the Agentverse Memory skill (33 MCP tools for persistent graph-native memory). The server is live and fully verified in production at We now also have rate limiting, LadybugDB graph backend, and 6 integration guides (Claude Desktop, LangChain, CrewAI, Cursor, Google ADK, Google Antigravity). Would love to get a review when someone has a moment. Happy to address any feedback! 🙏 |
|
🎉 Merged! Agentverse Memory is now live on agentverse-skills with 33 MCP tools. Production API: https://am-server-jbneh74b5q-uc.a.run.app |
Summary
Adds the Agentverse Memory skill — a managed MCP memory service giving any AI agent persistent, graph-native memory via 29 JSON-RPC 2.0 tools.
New skill:
agentverse-memoryEndpoint:
https://am-server-jbneh74b5q-uc.a.run.appAuth:
AM_API_KEYenv var (free tier:POST /v1/keys)Memory types covered
Key differentiators
valid_at/invalid_aton every memoryFiles added
skills/agentverse-memory/SKILL.md— Full skill definition (330 lines)skills/agentverse-memory/scripts/memory_client.py— CLI client (442 lines, 14 commands)README.md— Added to skills tablePricing
Quick start example
Testing
The
memory_client.pyscript self-tests at import time. Full integration tests requireAM_API_KEY.References