Skip to content

MCP Quick Start โ€‹

Get Mnemoverse documentation working in your AI assistant in under 5 minutes.

๐Ÿš€ Instant Setup (Claude Desktop) โ€‹

1. Install the Server โ€‹

bash
npm install -g @mnemoverse/mcp-docs-server

2. Configure Claude Desktop โ€‹

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.jsonWindows: %APPDATA%/Claude/claude_desktop_config.json

json
{
  "mcpServers": {
    "mnemoverse-docs": {
      "command": "node",
      "args": ["/usr/local/lib/node_modules/@mnemoverse/mcp-docs-server/index.js"],
      "env": {}
    }
  }
}

3. Restart Claude Desktop โ€‹

That's it! Claude now has access to all Mnemoverse documentation.

๐Ÿ”ง For Your Own Documentation โ€‹

Want to add MCP support to your documentation project?

1. Install Universal Template โ€‹

bash
npm install -g @mcp-x/mcp-docs-server

2. Configure for Your Project โ€‹

json
{
  "mcpServers": {
    "my-docs": {
      "command": "node",
      "args": ["/usr/local/lib/node_modules/@mcp-x/mcp-docs-server/index.js"],
      "env": {
        "DOCS_BASE_URL": "https://your-docs-site.com",
        "PROJECT_NAME": "Your Project"
      }
    }
  }
}

โšก Advanced Usage โ€‹

VS Code with Claude โ€‹

Install the MCP extension and configure:

json
{
  "mcp.servers": [
    {
      "name": "mnemoverse-docs",
      "command": ["node", "/usr/local/lib/node_modules/@mnemoverse/mcp-docs-server/index.js"]
    }
  ]
}

Multiple Documentation Sources โ€‹

json
{
  "mcpServers": {
    "mnemoverse-docs": {
      "command": "node",
      "args": ["/usr/local/lib/node_modules/@mnemoverse/mcp-docs-server/index.js"]
    },
    "my-project-docs": {
      "command": "node", 
      "args": ["/usr/local/lib/node_modules/@mcp-x/mcp-docs-server/index.js"],
      "env": {
        "DOCS_BASE_URL": "https://my-project.com/docs",
        "PROJECT_NAME": "My Project"
      }
    }
  }
}

๐Ÿงช Test Your Setup โ€‹

Try asking Claude:

"What is Mnemoverse and how does the MCP infrastructure work?"

You should see Claude access and reference the Mnemoverse documentation.

๐Ÿ” Troubleshooting โ€‹

Server Not Starting โ€‹

bash
# Check if installed correctly
which @mnemoverse/mcp-docs-server

# Test manual execution
node /usr/local/lib/node_modules/@mnemoverse/mcp-docs-server/index.js

Config Issues โ€‹

  • Ensure JSON is valid (no trailing commas)
  • Check file paths match your installation
  • Restart Claude Desktop after config changes

Permission Errors โ€‹

bash
# Fix npm global permissions
npm config set prefix ~/.npm-global
export PATH=~/.npm-global/bin:$PATH

๐Ÿ“š Next Steps โ€‹

๐Ÿ†˜ Need Help? โ€‹

Explore related documentation:

  • Getting Started with Mnemoverse - ๐Ÿš€ Getting Started with Mnemoverse | Quick start guide for Mnemoverse AI memory engine. Set up spatial memory systems in 5 minutes!
  • How to Contribute to Mnemoverse - ๐Ÿ“– How to Contribute to Mnemoverse | Step-by-step tutorial for Mnemoverse. Learn practical implementation with code examples.
  • MCP Server Development Guide for Mnemoverse Docs - ๐Ÿ“– MCP Server Development Guide for Mnemoverse Docs | Step-by-step tutorial for Mnemoverse AI memory engine. Learn spatial memory concepts with practical...
  • MCP Server - ๐Ÿ“– MCP Server | Step-by-step tutorial for Mnemoverse AI memory engine. Learn spatial memory concepts with practical examples.
  • ๐Ÿ” Advanced Research Search - ๐Ÿ“– ๐Ÿ” Advanced Research Search | Step-by-step tutorial for Mnemoverse AI memory engine. Learn spatial memory concepts with practical examples.