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.json
Windows: %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 โ
- Full MCP Server Guide - Complete documentation
- Development Guide - Build your own MCP servers
- Mnemoverse Research - Explore the underlying research
๐ Need Help? โ
- Check the Development Guide troubleshooting section
- Browse Mnemoverse documentation
- Open an issue on GitHub
Related Links โ
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.