Neuro MCP V2
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
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.
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.
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
├── 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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.