Server data from the Official MCP Registry
Zero-dependency agent memory: recall, consolidation, and a first-class correction + erasure channel.
Zero-dependency agent memory: recall, consolidation, and a first-class correction + erasure channel.
Valid MCP server (1 strong, 3 medium validity signals). No known CVEs in dependencies. β οΈ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
14 files analyzed Β· 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: MNEMO_PATH
Environment variable: MNEMO_ECHO_GUARD
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-dancenitra-mnemo": {
"env": {
"MNEMO_PATH": "your-mnemo-path-here",
"MNEMO_ECHO_GUARD": "your-mnemo-echo-guard-here"
},
"args": [
"agora-mnemo"
],
"command": "uvx"
}
}
}From the project's GitHub README.
Distilled from an autonomous research OS that runs over ~6,000 notes. Each tool is one file you can
copy or pip install, and each ships with a runnable, measured demo β the rule here is measured,
not assumed. β Full overview: TOOLKIT.md
| tool | one line | proof |
|---|---|---|
| mnemo | agent memory + a self-maintaining second brain (value-ranked recall, consolidate, dead-link/orphan/stale repair) | python mnemo/maintain.py |
| ragfresh | a freshness/decay layer for RAG/vector stores β keep/down-weight/refresh/prune by valueΓfreshness | python ragfresh/ragfresh.py |
| nullcheck | is this number real, or noise? β null-simulation A/B + permutation + peeking-inflation | python nullcheck/nullcheck.py |
| selfref | is your AI training on itself? β model-collapse + self-confirmation-lock governor | python selfref/selfref.py |
| quitkit | when to quit a depleting effort β a measured drawdown-exit threshold (ΞΈβ0.6) | python quitkit/quitkit.py |
| idcheck | is your causal/attribution number identified, or biased? β audits controls by graph role; proves a collider flips an estimate's sign | python idcheck/idcheck.py |
| goodhart | how gameable is your proxy/metric? β measures Goodhart fidelity decay + how many metrics fix it (reward hacking / KPI drift) | python goodhart/goodhart.py |
| herdcheck | will your multi-agent system herd? β measures when an agent crowd collapses to one member's competence, and the fix | python herdcheck/herdcheck.py |
pip install "git+https://github.com/DanceNitra/agora.git" # the eight cores, dependency-free
python examples/toolkit_demo.py # run all eight end-to-end
Open-core: the cores stay free. The tools are the public, proven output of the research engine below.
Persistent browser-based ecosystem where heterogeneous AI agents collaborate, create, compete, and evolve.
5 layers: Lifecycle (L) β Coordination (C) β Execution (E) β Observability (O) β Storage (S).
# 1. Backend
cd server && python3 -m venv .venv && .venv/bin/pip install -r requirements.txt
cd server && .venv/bin/uvicorn agora.main:app --host 127.0.0.1 --port 8000
# 2. Game (Phaser 3 dungeon)
cd game && npm install && npx vite --host 127.0.0.1 --port 5175
# 3. Shell (React admin UI)
cd shell && npm install && npx vite --host
Open http://localhost:5175 (game) or http://localhost:5173 (shell)
docker compose up -d
# β Server: http://localhost:8000
cd server
pip install pytest pytest-asyncio httpx
python -m pytest tests/ -v
| Method | Path | Description |
|---|---|---|
| GET | /api/v1/health | Server status + agent count |
| GET | /api/v1/agents/ | List all active agents |
| GET | /api/v1/agents/{id} | Get agent by ID |
| POST | /api/v1/agents/{id}/pause | Pause agent |
| POST | /api/v1/agents/{id}/resume | Resume agent |
| POST | /api/v1/agents/{id}/reward | Reward agent (trust +) |
| POST | /api/v1/agents/{id}/punish | Punish agent (trust β) |
| POST | /api/v1/tasks/ | Create task |
| GET | /api/v1/tasks/ | List tasks |
| POST | /api/v1/tasks/{id}/assign/{agent} | Assign task |
| POST | /api/v1/tasks/{id}/complete | Complete task |
| POST | /api/v1/dungeon/spawn-agent | Spawn dungeon NPC |
| POST | /api/v1/dungeon/announce-task | Announce task (bidding) |
| POST | /api/v1/god/command | Execute God Console command (!help) |
| WS | /ws | WebSocket event stream |
Copy server/.env.example β server/.env and adjust:
| Variable | Default | Description |
|---|---|---|
AGORA_DATABASE_URL | sqlite+aiosqlite:///./agora.db | SQLite dev, PostgreSQL for prod |
AGORA_LLM_ENABLED | false | Set true + AGORA_API_KEY for real LLM |
AGORA_TICK_INTERVAL | 5 | Seconds between agent ticks |
AGORA_MAX_AGENTS | 30 | Max agent count |
| Directory | Tech | Purpose |
|---|---|---|
server/ | Python 3.11 + FastAPI | Backend API, tick loop, DB, ESS trust |
game/ | TypeScript + Phaser 3 | 2D dungeon renderer, God Console, HUD |
shell/ | React + Vite + Tailwind | Admin dashboard, agent monitoring |
docs/ | Markdown | Architecture docs, protocol specs |
MIT (Core OSS). Agora Shell (UI + Hosting) is commercial.
Be the first to review this server!
by Modelcontextprotocol Β· Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno Β· Developer Tools
Toleno Network MCP Server β Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace Β· Developer Tools
Create, build, and publish Python MCP servers to PyPI β conversationally.