Neuro V2
FreeNot checkedSupercharges Claude Desktop with persistent semantic memory, sandboxed file I/O, live web search, and local emotional intelligence using a local ChromaDB and Hu
About
Supercharges Claude Desktop with persistent semantic memory, sandboxed file I/O, live web search, and local emotional intelligence using a local ChromaDB and Hugging Face model.
README
Description
Neuro MCP V2 is an advanced, production-grade local Model Context Protocol (MCP) server designed specifically for Claude Desktop. It supercharges Claude with a suite of agentic capabilities, bridging the gap between local execution and AI assistance using standard I/O (stdio) transport.
Key Features
- Persistent Semantic Memory: Utilizes local embedded ChromaDB to store, embed, and instantly recall user context and project insights across different chat sessions.
- Sandboxed File System I/O: Safely reads and writes files asynchronously via
aiofileswithin a strict, path-traversal-protectedworkspace/directory. - Live Web Research: Interacts with the Tavily Search API via
httpxto pull real-time data, documentation, and news directly into Claude's context window. - Local Emotional Intelligence: Runs a localized Hugging Face DistilRoBERTa pipeline via
transformersandtorchto analyze the semantic emotional tone of text blocks with zero external API latency. - Algorithmic Text Summarization: Compresses long documents and web search dumps using an extractive summarization engine based on normalized word-frequency scoring, instantly extracting key informational sentences to prevent LLM context window exhaustion.
- Zero-Dependency Entity & Intent Extraction: Parses unstructured text records locally using a highly optimized, regex-based NLP engine to instantly extract critical parameters (IPs, emails, URLs, monetary bounds) and classify system operational intent.
Architecture & Tech Stack
- Framework:
fastmcp(Official Python SDK for MCP) - Package Management:
uv(Fast Python dependency resolution) - Database:
chromadb(Serverless, local SQLite vector storage) - Machine Learning:
transformers,torch - Async Operations:
aiofiles,httpx
Project Structure
neuro_mcp_v2/
├── .venv/
├── memory_db/
├── workspace/
├── .python-version
├── README.md
├── main.py
├── pyproject.toml
├── src/
├── mymcp/
├── server.py
├── tools/
├── emotion.py
├── fs_io.py
├── memory.py
├── websrch.py
├── extractor.py
├── summarize.py
├── utils/
├── security.py
├── uv.lock
Prerequisites
- Python: 3.10 or higher
- Claude Desktop Application
- Tavily API Key: For web search capabilities
Installation
Clone the repository and navigate to the project root. Sync the dependencies using uv:
uv sync
Crucial Pre-flight Step: Run the server manually once to cache the Hugging Face emotion model (~300MB) locally and prevent Claude Desktop initialization timeouts:
uv run src/mymcp/server.py
Press Ctrl + C once the model finishes downloading.
Claude Desktop Configuration
To connect this server to Claude, edit your Claude Desktop configuration file (located at %APPDATA%\Claude\claude_desktop_config.json on Windows). [or simply go to Claude Desktop -> profile -> settings -> developer -> edit config option(if the mcp option is not shown automatically) -> make changes to the file that opens] Point the command to your project's absolute path and supply your API keys in the environment block:
{
"mcpServers": {
"neuro-mcp-v2": {
"command": "C:\\Absolute\\Path\\To\\second_mcp_server\\.venv\\Scripts\\python.exe",
"args": [
"C:\\Absolute\\Path\\To\\second_mcp_server\\src\\mymcp\\server.py"
],
"env": {
"PYTHONUTF8": "1",
"TAVILY_API_KEY": "your_tavily_api_key_here"
}
}
}
}
Restart Claude Desktop entirely after updating this file. You should see the MCP plug icon appear in your chat window.
Security Notice
This application includes a workspace/ sandbox. The security middleware prevents the AI from reading or writing files outside of this specific directory to protect your local machine. Do not bypass the security.py checks.
License
This project is licensed under the MIT License.
Installing Neuro V2
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/Arks-06/neuro_mcp_v2FAQ
Is Neuro V2 MCP free?
Yes, Neuro V2 MCP is free — one-click install via Unyly at no cost.
Does Neuro V2 need an API key?
No, Neuro V2 runs without API keys or environment variables.
Is Neuro V2 hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Neuro V2 in Claude Desktop, Claude Code or Cursor?
Open Neuro V2 on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
Compare Neuro V2 with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
