Cursor
100% FREENo account or API key required
Install Memoria for the Cursor AI code editor.
Quick Install (One-liner)
Run this in your project directory:
mkdir -p .cursor && echo '{"mcpServers":{"memoria":{"command":"npx","args":["-y","@byronwade/memoria"]}}}' > .cursor/mcp.jsonManual Setup
Step 1: Create Config File
Cursor supports both project-level and global MCP configuration:
- Project-level:
.cursor/mcp.json(in project root) - Global:
~/.cursor/mcp.json
Step 2: Add Configuration
Add this to your mcp.json file:
{
"mcpServers": {
"memoria": {
"command": "npx",
"args": ["-y", "@byronwade/memoria"]
}
}
}Step 3: Restart Cursor
Restart Cursor to load the new MCP configuration.
Verify Installation
Ask Cursor's AI:
"What MCP tools do you have available?"You should see analyze_file and ask_history from Memoria.
Usage
Ask the AI to analyze files before making changes:
"Analyze src/api/route.ts before I refactor it"Project vs Global Config
Use project-level config (.cursor/mcp.json) if you want Memoria only for specific projects. Use global config for all projects.