RhymeBook
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@RhymeBookfind rhyming words for 'forever' with slant and multi-syllable matches"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π― What is RhymeBook?
RhymeBook is an AI-powered music production assistant that lives inside your favorite AI tools (Claude Desktop, VS Code, and more). It combines powerful lyric writing tools, beat management, and session tracking into one seamless workflow.
Why Artists Love It
π€ Write Better | π§ Find Perfect Beats | π Stay Organized |
AI rhyme finder with slant & multi-syllable matches | Filter by genre, mood, BPM, and energy | Track every session, take, and collaborator |
Real-time syllable counting & flow analysis | Match lyrics to beats using AI | Visual progress from writing β released |
Export to text, markdown, JSON, or LRC | Waveform visualization & audio effects | Persistent SQLite database |
π Powered by Model Context Protocol
RhymeBook uses MCP to give AI assistants direct access to your music tools. Ask Claude to find rhymes, log a take, or browse beats β it all happens instantly through natural conversation.
π€ Claude Skill Included
RhymeBook comes with a built-in Claude skill that provides intelligent assistance:
Smart Tool Selection - Automatically picks the right tool for your request
Creative Partner - Proactively suggests rhymes, flow improvements, and beat matches
Workflow Guidance - Guides you through writing, recording, and production
Natural Language - Just ask naturally, no need to remember tool names
The skill is located in .claude/skills/SKILL.md and activates automatically when you mention music-related terms.
Related MCP server: Mureka MCP Server
β¨ Features
π Dashboard
Overview Stats - Total songs, sessions, takes, beats, collaborators
Song Progress Funnel - Visual pipeline from writing to released
Weekly Activity Chart - 8-week trend visualization
Activity Feed - Real-time feed of all actions with filtering
Insights - Most productive day, avg session length, completion rate
Recent Items - Quick access to recent songs and sessions
Quick Actions - One-click access to common tasks
Beat Library Stats - Overview of beat collection
π΅ Lyric Lab
Rhyme Finder - Find perfect, slant, and multi-syllable rhymes
Syllable Counter - Live syllable counting per line
Flow Visualizer - Visual representation of rhythm patterns
Thesaurus - Contextual word suggestions
Section Organizer - Manage verses, choruses, bridges, and more
Save & Export - Export lyrics in text, markdown, JSON, or LRC formats
Import Lyrics - Import from TXT, JSON, LRC, or SRT files
Batch Import/Export - Process multiple files at once
ποΈ Session Tracker
Project Dashboard - Overview of all songs in progress
Take Manager - Log and rate recording takes (1-5 stars)
Collaboration Tracker - Manage features, producers, engineers
Milestone Progress - Visual progress bars (writing β recording β mixing β mastering)
Notes & Feedback - Attach notes to sessions
Persistent Storage - All data saved to SQLite database
π§ Beat Explorer
Browse & Filter - Filter by genre, mood, BPM, energy level
Wavesurfer.js Waveform - Professional waveform visualization
Frequency Visualizer - Live frequency bars during playback
Audio Player - Full playback controls with seek, volume
Audio Effects - Reverb, delay, distortion, and 3-band EQ (Tone.js)
Scrub Bar - Interactive progress bar with drag-to-seek
Auto BPM/Key Detection - music-metadata analyzes audio files
Favorites & Collections - Organize beats into playlists
Lyric-to-Beat Matcher - AI suggests beats matching your lyrics' energy
Library Management - Set custom folder path for beat files
Auto-Import - Scan and import beats from your library folder
Copy to Library - Add beats from anywhere to your library
Vocal Separation - Spleeter AI for stem extraction
β‘ Performance & Security
Performance Optimizations
Async File Operations - All file I/O is non-blocking
Database Indexes - Optimized queries for common operations
Parallel Dashboard Queries - Faster dashboard loading
Scan Caching - Beat library scans cached for 1 minute
Real-time Vocal Removal - No playback restart needed
Dynamic Library Loading - Tone.js and Wavesurfer.js loaded on-demand
Optimized Bundle Size - 634KB single-file bundle (under 5MB MCP limit)
Tree Shaking - Unused code automatically removed
Terser Minification - Production code compressed and optimized
Security Features
Path Traversal Protection - Validates all file paths
Rate Limiting - 100 requests per 15 minutes
CORS Configuration - Environment-based origin allowlist
Input Validation - Zod schemas with length limits
Graceful Shutdown - Proper cleanup handlers
π Quick Start
Prerequisites
Node.js 18+
npm or pnpm
FFmpeg (for audio processing)
Spleeter (for vocal separation)
Installing FFmpeg
Windows (Chocolatey):
choco install ffmpegWindows (Manual):
Download from ffmpeg.org
Add to PATH environment variable
macOS (Homebrew):
brew install ffmpegLinux (Ubuntu/Debian):
sudo apt update && sudo apt install ffmpegInstalling Spleeter
Via pip:
pip install spleeterVia conda:
conda install -c conda-forge spleeterNote: Spleeter requires Python 3.7+ and will download AI models on first use (~265MB).
# Clone the repository
git clone https://github.com/yourusername/rhymebook-mcp-server.git
cd rhymebook-mcp-server
# Install dependencies
npm install
# Build the project
npm run buildRunning the Server
HTTP Mode (for web-based hosts)
npm start
# Server runs on http://localhost:3001
# MCP endpoint: http://localhost:3001/mcpStdio Mode (for Claude Desktop)
npm run start:stdioDevelopment Mode
npm run dev
# Runs both server and UI in watch modeπ Project Structure
rhymebook-mcp-server/
βββ src/
β βββ server/
β β βββ index.ts # MCP server entry point
β βββ tools/
β β βββ lyric-lab.ts # Lyric Lab tools (9 tools)
β β βββ session-tracker.ts # Session Tracker tools (10 tools)
β β βββ beat-explorer.ts # Beat Explorer tools (14 tools)
β β βββ dashboard.ts # Dashboard tools (4 tools)
β βββ db/
β β βββ database.ts # SQLite database setup
β β βββ operations.ts # Database CRUD operations
β β βββ beats-library.ts # Beat library file management
β β βββ lyrics-io.ts # Lyrics import/export
β βββ ui/
β βββ index.html # Main HTML template
β βββ styles.css # UI styles (dark theme)
β βββ main.ts # Client-side logic
β βββ audio-engine.ts # Web Audio API engine
β βββ visualizers.ts # Waveform & frequency visualizers
β βββ beat-player.ts # Beat player component
βββ dist/
β βββ server/ # Compiled server code
β βββ ui/
β βββ index.html # Bundled single-file UI
βββ claude_desktop_config.example.json # Example Claude Desktop config
βββ CONFIGURATION.md # Detailed configuration guide
βββ package.json
βββ tsconfig.json
βββ tsconfig.server.json
βββ vite.config.tsπ οΈ Available Tools
Lyric Lab Tools
Tool | Description |
| Find perfect, slant, and multi-syllable rhymes |
| Count syllables in lyrics |
| Analyze rhythm and flow patterns |
| Get contextual synonyms |
| Save lyrics to database |
| Export lyrics (text, markdown, JSON, LRC) |
| Import lyrics from file or text |
| Import all lyrics from a directory |
| Get all saved songs |
Session Tracker Tools
Tool | Description |
| Get overview of all songs |
| Get recording sessions |
| Log a new recording take |
| Get all collaborators |
| Update song status and progress |
| Add notes to a session |
| Create a new song project |
| Schedule a recording session |
| Add a new collaborator |
Beat Explorer Tools
Tool | Description |
| Browse and filter beats |
| Get detailed beat information |
| Add/remove from favorites |
| Get all beat collections |
| Add beat to collection |
| Create a new collection |
| Find beats matching lyrics |
| Get library statistics |
| Add a new beat (auto-detects BPM/key) |
| Analyze audio file for BPM, key, duration |
Audio Processing Tools
Tool | Description |
| Separate audio into stems using Spleeter AI |
| Extract vocals from a track |
| Check available audio processing tools |
Library Management Tools
Tool | Description |
| Get current beats library path |
| Set beats library folder path |
| Scan library for audio files |
| Import new beats from library |
| Copy beat file to library |
Dashboard Tools
Tool | Description |
| Get comprehensive overview of all data |
| Get activity feed with filtering |
| Get detailed progress statistics |
| Get quick stats for widgets |
π¨ UI Features
Dark Theme - Easy on the eyes for late-night sessions
Responsive Design - Works on desktop and tablet
Real-time Updates - Instant feedback as you type
Toast Notifications - Clear feedback for actions
Modal Dialogs - Clean export interface
Drag & Drop - Reorder song sections
Keyboard Shortcuts - Ctrl+S (save), Ctrl+N (new), Space (play/pause), Escape (close modal)
Auto-Save - Automatic save after 30 seconds of inactivity
Loading States - Visual feedback during async operations
π€ Vocal Removal
RhymeBook includes real-time vocal removal for practicing and remixing:
Center Channel Extraction - Removes centered vocals from stereo tracks
Real-time Adjustment - Smooth slider control with no audio glitches
Frequency Filtering - Attenuates vocal frequency ranges (250Hz - 3.5kHz)
How to Use
Load a beat in the Beat Explorer
Use the π€ Vocals slider in the player controls
Slide right to reduce vocals (0% = original, 100% = maximum removal)
Best Results
β Stereo tracks with centered vocals
β Modern pop/hip-hop productions
β οΈ Older stereo mixes (moderate results)
β Mono tracks (no stereo information to extract)
πΎ Database
RhymeBook uses SQLite for persistent storage. The database is automatically created at:
Windows:
%USERPROFILE%\.rhymebook\rhymebook.dbMac/Linux:
~/.rhymebook/rhymebook.db
Database Schema
Table | Description |
| Song projects with title, status, progress, notes |
| Lyrics organized by section type (verse, chorus, etc.) |
| Artists, producers, engineers, writers |
| Many-to-many relationship between songs and collaborators |
| Studio session tracking with date, studio, engineer |
| Individual recording takes with ratings (1-5 stars) |
| Beat library with BPM, key, energy, file path |
| Genre tags for beats (many-to-many) |
| Mood tags for beats (many-to-many) |
| Custom tags for beats |
| Named beat playlists |
| Beats in collections with position |
| App configuration (library path, theme) |
Database Indexes
Optimized indexes for common queries:
Songs by status and update date
Sessions by date and song
Takes by session and timestamp
Beats by favorite status, BPM, and energy
π Beats Library Management
Setting Your Library Path
Use the set-library-path tool to point to your beats folder:
Set library path: C:\Users\You\Music\BeatsSupported Audio Formats
MP3, WAV, FLAC, AAC, OGG, M4A, WMA
Auto-Import Beats
Set your library path
Run
scan-libraryto see all audio filesRun
import-beatsto add them to the database
Filename Parsing
RhymeBook automatically extracts info from filenames:
Beat Name 140BPM Am.mp3β Title: "Beat Name", BPM: 140, Key: AmDark_Trap_150_Cm.wavβ Title: "Dark Trap", BPM: 150, Key: Cm
βοΈ Configuration
Environment Variables
Variable | Description | Default |
| HTTP server port |
|
| Comma-separated CORS origins |
|
Claude Desktop Configuration
Add to your claude_desktop_config.json:
Windows:
{
"mcpServers": {
"rhymebook": {
"command": "node",
"args": ["C:\\Users\\YourUsername\\path\\to\\rhymebook-mcp-server\\dist\\server\\index.js", "--stdio"]
}
}
}macOS/Linux:
{
"mcpServers": {
"rhymebook": {
"command": "node",
"args": ["/Users/yourusername/path/to/rhymebook-mcp-server/dist/server/index.js", "--stdio"]
}
}
}With Environment Variables:
{
"mcpServers": {
"rhymebook": {
"command": "node",
"args": ["/path/to/rhymebook-mcp-server/dist/server/index.js", "--stdio"],
"env": {
"PORT": "3001"
}
}
}
}VS Code Configuration
Add to your VS Code settings.json:
{
"mcp.servers": {
"rhymebook": {
"command": "node",
"args": ["${workspaceFolder}/dist/server/index.js", "--stdio"]
}
}
}HTTP Mode (for web-based hosts)
{
"mcpServers": {
"rhymebook-http": {
"url": "http://localhost:3001/mcp"
}
}
}π For detailed configuration instructions, see CONFIGURATION.md
π Usage Examples
Finding Rhymes
User: Find rhymes for "flow"
Assistant: [Calls find-rhymes tool]
Result: Perfect: go, show, know, grow...
Slant: soul, roll, control...
Multi: overflow, undertow...Matching Lyrics to Beats
User: I have aggressive lyrics about hustling, find me a beat
Assistant: [Calls match-lyrics-to-beat with lyrics]
Result: Suggested beats ranked by energy/mood matchTracking Recording Sessions
User: Log take 4 for today's session - 5 stars, best take!
Assistant: [Calls log-take tool]
Result: Take logged, marked as best takeGetting Dashboard Overview
User: Show me my project dashboard
Assistant: [Calls get-dashboard-summary tool]
Result: Overview stats, recent activity, insightsVocal Removal
User: Play this beat with vocals removed
Assistant: [Loads beat in player, sets vocal removal to 100%]
Result: Instrumental version playsπΊοΈ Roadmap
SoundCloud integration for beat discovery
Spotify playlist sync
AI-powered lyric suggestions
Collaborative sessions with real-time sync
Mobile companion app
Export to DAW formats (MIDI, stems)
π€ Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Fork the repository
Create your feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
Development Setup
# Clone your fork
git clone https://github.com/yourusername/rhymebook-mcp-server.git
cd rhymebook-mcp-server
# Install dependencies
npm install
# Run tests
npm test
# Start development server
npm run devπ License
This project is licensed under the MIT License - see the LICENSE file for details.
π€ Author
Anthony M Cavanaugh (he/him)
Company: Cavanaugh Design Studio
GitHub: @cavanaughdesign
Email: cavanaughdesign@gmail.com
Twitter/X: @cavanaughdesign
Instagram: @cavanaughdesignstudio
π Acknowledgments
Built with Model Context Protocol
UI powered by MCP Apps SDK
Audio processing with Tone.js and Wavesurfer.js
Database powered by Better-SQLite3
Inspired by the creative process of music artists everywhere
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cavanaughdesign/rhymebook-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server