crush-mcp-server
v1.5.0
Published
MCP server for CRUSH the Memory — access your voice notes, transcripts, and audio from AI tools
Maintainers
Readme
CRUSH MCP Server
Connect your CRUSH voice notes to AI tools like Claude Desktop, Cursor, Windsurf, and more via the Model Context Protocol.
Setup
1. Get your API key
- Log in to app.crushthememory.com
- Go to Account > API Key
- Click Generate API Key
- Copy the key (shown only once)
2. Add to Claude Desktop
Edit your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"crush": {
"command": "npx",
"args": ["-y", "crush-mcp-server"],
"env": {
"CRUSH_API_KEY": "crush_sk_your_key_here"
}
}
}
}Restart Claude Desktop.
3. Use it
Ask Claude things like:
- "What did I record today?"
- "Search my notes for anything about the product roadmap"
- "Get the audio file for my last meeting"
- "How many AI credits do I have left?"
Available Tools
| Tool | Description |
|------|-------------|
| crush_list_notes | List recent notes with transcripts. Supports keyword search. |
| crush_get_note | Get a specific note by ID with full transcript. |
| crush_get_audio_url | Get a temporary download URL for a note's audio recording. |
| crush_list_tags | List all your tags. |
| crush_get_profile | Get your account info and AI credit balance. |
Local Development
git clone https://github.com/glamcor/crush-mcp-server.git
cd crush-mcp-server
npm install
npm run build
# Test with MCP inspector
CRUSH_API_KEY=crush_sk_your_key npx @modelcontextprotocol/inspector node dist/index.jsLicense
MIT
