Neuro MCP V2
Neuro MCP V2 is a local MCP server that extends Claude Desktop with persistent memory, sandboxed file I/O, live web search, and text analysis capabilities.
Read & Write Files — Read and write text files within a sandboxed
workspace/directory (with automatic directory creation), enabling Claude to reference and save documents, code, or notes securely.Store & Recall Persistent Memory — Store long-term semantic context, user preferences, and project insights into a local ChromaDB vector database, then retrieve them via semantic search so Claude can "remember" across sessions.
Live Web Search — Search the web via the Tavily API to fetch real-time answers, documentation, and news directly into Claude's context.
Analyze Text Emotion — Run a local DistilRoBERTa classification pipeline to detect emotional tone (Joy, Sadness, Anger, Fear, Surprise, Disgust, Neutral) with no external API calls.
Extract Entities — Extract structured entities (IPs, emails, URLs, monetary values) and classify operational intent from unstructured text using a zero-dependency NLP engine.
Summarize Documents — Condense long documents or web search results into key sentences using extractive keyword-frequency scoring.
Provides a local emotion analysis pipeline using a Hugging Face DistilRoBERTa model, capable of detecting semantic emotional markers (Joy, Sadness, Anger, Fear, Surprise, Disgust, Neutral) in text without external API latency.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Neuro MCP V2Remember that my project deadline is next Friday."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Neuro MCP V2
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.
Related MCP server: MCP Document Indexer
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,torchAsync 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.lockPrerequisites
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 syncCrucial 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.pyPress 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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Arks-06/neuro_mcp_v2'
If you have feedback or need assistance with the MCP directory API, please join our Discord server