Multilingual intelligence + memory + safety + voice layer for autonomous AI agents
๐ง NeuroVerse
๐ฆ Install from npm | ๐ GitHub Repository
Your AI agent only speaks English. NeuroVerse fixes that. Your AI agent forgets everything. NeuroVerse remembers. Your AI agent might do something dangerous. NeuroVerse stops that. Your AI agent is locked to one model. NeuroVerse routes to the best one.
Multilingual intelligence + memory + safety + voice layer for autonomous AI agents.
๐ What's New in v4.1
- OpenRouter Reasoning: Integrated the
stepfun/step-3.5-flash:freemodel for high-performance analytical tasks. Use the newneuroverse_reasontool for deep thinking. - Reasoning Tokens: Real-time tracking of reasoning tokens for every request.
- Voice Layer (v2.0): Built-in support for Whisper STT and Coqui TTS.
๐ What is NeuroVerse?
Every time you start a new chat with Cursor, VS Code Copilot, or any MCP-compatible AI agent, it starts from zero โ no memory, no safety, no understanding of your language. NeuroVerse is an MCP server that gives your agents:
| Feature | Description | |
|---|---|---|
| ๐ | Multilingual Intelligence | Understands mixed Indian languages โ Tamil, Hindi, Telugu, Kannada, Malayalam, Bengali + English. Code-switching? No problem. |
| ๐๏ธ | Voice Layer | STT via Whisper and TTS via Coqui. Transcribe user audio and synthesize agent responses. |
| ๐ง | Intent Extraction | LLM-first structured intent extraction with deterministic rule-based fallback. Never misses a command. |
| ๐พ | Tiered Memory | Short-term (session), Episodic (recent), Semantic (long-term facts) โ all with importance scoring. |
| ๐ก๏ธ | 3-Layer Safety (Kavach) | Keyword blocklist โ Intent risk classifier โ LLM judge. Blocks DROP DATABASE before it's too late. |
| ๐ค | Multi-Model Router (Marga) | OpenAI ยท Anthropic ยท Sarvam AI ยท Ollama ยท OpenRouter โ routes each task to the best model automatically. |
| ๐ | Agent-to-Agent (Setu) | REST+JSON agent registry with automatic fallback. Agents calling agents calling agents. |
| โก | Async Everything | FastAPI + asyncpg + httpx. Sub-millisecond safety checks. Zero blocking. |
โก NeuroVerse is a modular intelligence layer โ not a monolith. Plug in what you need. Ignore what you don't.
๐ Quick Start
1. Install
Option A: npm (recommended) โ use anywhere
npm install neuroverse
Option B: From source (Python)
git clone https://github.com/joshua400/neuroverse.git
cd neuroverse
python -m pip install -e ".[dev]"
๐ก Tip: If you installed via npm, the path is node_modules/neuroverse/dist/index.js. If from source, use the absolute path to your cloned directory.
2. Add NeuroVerse to your MCP config
NeuroVerse is a standard MCP serv
Tools (1)
neuroverse_reasonPerforms high-performance analytical tasks using OpenRouter reasoning models.Configuration
{"mcpServers": {"neuroverse": {"command": "npx", "args": ["-y", "neuroverse"]}}}