@rymovac/mcp
v1.1.0
Published
MCP server for finding Czech rhymes using rymovac.cz API
Maintainers
Readme
Rymovac MCP Server
MCP server that makes LLMs write poetry that actually rhymes. This Model Context Protocol server provides tools for Czech rhymes using the rymovac.cz API.
Usage
Add this server to your Claude Desktop/Cursor configuration:
{
"mcpServers": {
"rymovac": {
"command": "npx",
"args": ["-y", "@rymovac/mcp"]
}
}
}Components
The server provides:
Tools
find_rhymes
Find Czech rhymes for a given word or phrase.
Parameters:
word(required): The word or phrase to find rhymes forcount(optional): Number of rhymes to return (1-50, default: 10)from(optional): Starting index for pagination (default: 0)
check_rhyme
Check if two Czech words, phrases, verses, or poem rows rhyme.
Parameters:
word1(required): The first Czech word, phrase, verse, or poem row to compareword2(required): The second Czech word, phrase, verse, or poem row to compare
Prompts
czech-poem-guide (experimental)
A comprehensive guide for writing Czech poems using the rhyme finder.
Parameters:
theme(optional): Theme or topic for the poemverses(optional): Number of verses/stanzas (default: 4)
Development
Installation
npm install
npm run build
npm run startScripts
npm run build- Build TypeScript to JavaScriptnpm start- Start the production servernpm run inspect- Start and testing with MCP Inspectornpm run watch- Watch mode for TypeScript compilation only
Testing
Testing with Claude Desktop
Add this to configuration:
{
"mcpServers": {
"rymovac": {
"command": "node",
"args": ["/path/to/rymovac-mcp/dist/index.js"]
}
}
}Testing with MCP Inspector
You can test the MCP server using the official MCP Inspector (https://modelcontextprotocol.io/legacy/tools/inspector):
npm run inspectPublishing as NPM package
- Update version in package.json
npm publish
License
This project is licensed under the MIT License - see the LICENSE file for details.
