neuroverse
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_PORT | No | Port to use if MCP_TRANSPORT is set to streamable_http. | 8000 |
| DATABASE_URL | No | PostgreSQL connection string. Required for persistent memory in the Python edition (e.g., postgresql+asyncpg://user:password@localhost:5432/neuroverse). | |
| MCP_TRANSPORT | No | Transport protocol for MCP. Can be 'stdio' or 'streamable_http'. | stdio |
| OPENAI_API_KEY | No | API key for OpenAI models. | |
| SARVAM_API_KEY | No | API key for Sarvam AI models. | |
| OLLAMA_BASE_URL | No | Base URL for local Ollama instance. | http://localhost:11434 |
| ANTHROPIC_API_KEY | No | API key for Anthropic models. | |
| SAFETY_STRICT_MODE | No | When set to true, also blocks MEDIUM risk actions (unknown/send). If false, only blocks HIGH and CRITICAL. | false |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| neuroverse_processA | Process mixed-language input through the full NeuroVerse pipeline. Pipeline: Language Detect → Normalise → Intent Extract → Safety Check → (optional) Execute Supported languages: Tamil, Hindi, Telugu, Kannada + English (code-switched). Args:
Returns: JSON with keys: language, intent, safety, execution (if execute=true) Examples:
|
| neuroverse_storeA | Store a memory record in NeuroVerse's tiered memory system. Tiers:
Only episodic/semantic memories with importance_score ≥ 0.4 are persisted. Args:
Returns: JSON of the stored MemoryRecord |
| neuroverse_recallA | Retrieve memories from NeuroVerse's tiered memory system. Args:
Returns: JSON array of matching MemoryRecords |
| neuroverse_executeA | Parse, safety-check, and execute a user request end-to-end. Convenience tool that chains: Language → Intent → Safety → Execute. Args:
Returns: JSON with safety verdict and execution result |
| neuroverse_routeB | Route a task to a registered downstream agent via HTTP. Args:
Returns: JSON with the agent's response or a fallback error |
| neuroverse_modelA | Query the multi-model AI router. If a prompt is provided, the prompt is sent to the routed model. Otherwise, returns only the routing decision. Supported providers: OpenAI, Anthropic, Sarvam AI, Ollama. Args:
Returns: JSON with routing decision and optional model response |
| neuroverse_transcribeB | Transcribe an audio file to text using Whisper STT. Args:
Returns: JSON with the transcribed text |
| neuroverse_synthesizeA | Synthesize text to speech using Coqui TTS. Args:
Returns: JSON with the path to the generated audio file |
| neuroverse_feedbackB | Submit Reinforcement Learning from Human Feedback (RLHF) data for agent tuning. |
| neuroverse_assemble_contextB | Scan the codebase and assemble the most relevant file chunks based on a query. |
| neuroverse_reasonA | Execute a complex reasoning task using specialized high-performance models (e.g. OpenRouter Reasoning). Returns the model's analytical response. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
Each tool has a clear and distinct purpose, covering different aspects like memory, language processing, model routing, audio, and execution. There is no overlap that would cause confusion for an agent.
All tools follow a consistent 'neuroverse_verb_noun' pattern using snake_case, making them predictable and easy to navigate.
With 11 tools, the set is well-scoped for a multi-modal AI platform. Each tool provides necessary functionality without being excessive.
The tool surface covers core operations like memory storage/retrieval, model queries, language processing, and audio handling. Minor gaps exist (e.g., no explicit memory update or delete tool), but the overall set is robust for common tasks.