New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@mnemoverse/mcp-docs-server

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mnemoverse/mcp-docs-server

MCP Server for Mnemoverse Documentation - File-based with docs included

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

Mnemoverse MCP Documentation Server

A Model Context Protocol (MCP) server that provides AI assistants with direct access to Mnemoverse's complete documentation library.

📦 Self-contained Package
This package includes all Mnemoverse documentation files. No external API dependencies required!

Installation

Claude Code

# Add to current project
claude mcp add mnemoverse -- npx -y @mnemoverse/mcp-docs-server

# Or add globally for all projects
claude mcp add --scope user mnemoverse -- npx -y @mnemoverse/mcp-docs-server

Claude Desktop

Add to your Claude Desktop configuration:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "mnemoverse": {
      "command": "npx",
      "args": ["-y", "@mnemoverse/mcp-docs-server"]
    }
  }
}

Cursor

Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):

{
  "mcpServers": {
    "mnemoverse": {
      "command": "npx",
      "args": ["-y", "@mnemoverse/mcp-docs-server"]
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "mnemoverse": {
      "command": "npx",
      "args": ["-y", "@mnemoverse/mcp-docs-server"]
    }
  }
}

VSCode

Add to ~/.vscode/mcp.json:

{
  "servers": {
    "mnemoverse": {
      "command": "npx",
      "args": ["-y", "@mnemoverse/mcp-docs-server"],
      "type": "stdio"
    }
  }
}

Zed

Add to settings.json (open via cmd+, or zed: open settings):

{
  "context_servers": {
    "mnemoverse": {
      "command": {
        "path": "npx",
        "args": ["-y", "@mnemoverse/mcp-docs-server"],
        "env": {}
      },
      "settings": {}
    }
  }
}

Configuration

No configuration required! The server uses included documentation files.

Tools

  • list_documents - List all available Mnemoverse documentation sections
  • search_docs - Search through documentation and research content
  • get_document - Retrieve complete document content by path

Note: This version includes all documentation files within the package.

Managing the Server

Claude Code

# View configured servers
claude mcp list

# Get server details
claude mcp get mnemoverse

# Remove the server
claude mcp remove mnemoverse

# Restart the server
claude mcp restart mnemoverse

How it Works

The MCP server provides direct access to Mnemoverse's documentation files:

  • Document Discovery - Browse research papers, guides, and vision documents
  • File-based Search - Find relevant documents by filename and title
  • Full Content Access - Retrieve complete markdown document content

All documentation is included in the package, making it completely self-contained.

Example Usage

Once installed, you can ask your AI assistant questions like:

  • "List all Mnemoverse documentation sections"
  • "Find documents about memory solutions"
  • "Show me the full content of research/memory-solutions-landscape.md"
  • "Search for documents about cognitive thermodynamics"

Requirements

  • Node.js 18+
  • No external dependencies or APIs required!

License

MIT

Documentation

For detailed installation instructions, troubleshooting, and advanced usage, visit: https://mnemoverse.org/docs/guides/mcp-server

Keywords

mcp

FAQs

Package last updated on 29 Jul 2025

Related posts