🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

visual-memory-context-server

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

visual-memory-context-server

0. **Install dependencies**

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

To run

  • Install dependencies

    npm install @modelcontextprotocol/sdk zod@3
    npm install -D @types/node typescript
    
  • [Optional] Set Configuration Options:

    • MEMORY_FILE_PATH: Path to the memory.json file for knowledge graph storage
    • ALLOWED_DIRECTORIES: Comma-separated list of directories the server can access, or JSON array format like ["C:/path1", "C:/path2"]

    Run these directly in the Powershell terminal. For example:

    "MEMORY_FILE_PATH": "/Users/saskiagilmer/Documents/custom_vs_code/test0/memory.json",
    
  • Build the project

    npm run build
    npm start
    

    Or use the combined script:

    npm run dev
    

    The server is now running.

  • Connect to the client of your choice

Option A: Use VSCode client

  • Navigate to MCP config update file

    For VSCode:

      C:\Users\saskiagilmer\AppData\Roaming\Code\User\mcp.json
    
  • Paste this text

    {
      "servers": {
    		"open-context": {
    			"type": "http",
    			"url": "http://localhost:3000/mcp"
           },
        }
    }
    

Option B: Use Custom Vis client

Follow instructions in https://github.com/nicobburbano/mcp-vis

Appendix

For STDIO servers, follow the same steps in VCCode but paste this text instead: { "mcpServers": { "weather-memory-server": { "command": "node", "args": ["C:/Users/saskiagilmer/source/repos/mcp-server/build/index.js", "-y", "@modelcontextprotocol/server-memory"], "env": { "MEMORY_FILE_PATH": "/Users/saskiagilmer/Documents/custom/memory.json", "ALLOWED_DIRECTORIES": "C:/Users/saskiagilmer/Documents,C:/Users/saskiagilmer/source/repos" } } } For Claude Desktop, you can find the config file here (only STDIO supported):

     C:\Users\saskiagilmer\AppData\Roaming\Claude\claude_desktop_config.json

For any updates, kill all Claude Desktop processes

 Do this in Task Manager so you can kill background processes too

FAQs

Package last updated on 20 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts