worz-write-mcp

EngineeringSuccess/worz-write-mcp

3.2

If you are the rightful owner of worz-write-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Chinese Rhyme MCP Server is a specialized server that provides Chinese rhyming capabilities to AI assistants using the Model Context Protocol.

Tools
1
Resources
0
Prompts
0

Chinese Rhyme MCP Server

A Model Context Protocol (MCP) server that provides Chinese rhyming capabilities to AI assistants. This server connects to the write.worz.io API to fetch accurate Chinese rhyme suggestions.

Features

  • chinese_rhyme tool: Find Chinese rhyming words for any Chinese character or word
  • Built with mcp-go v0.39.1
  • Supports the latest MCP protocol (2025-06-18)

Installation

# Clone or download this repository
# Build the server
go build -o chinese-rhyme-mcp

# Or install directly
go install .

Usage

With MCP-compatible clients

The server implements the Model Context Protocol and can be used with any MCP-compatible client:

{
  "name": "chinese-rhyme",
  "command": "./chinese-rhyme-mcp"
}

Testing manually

You can test the server manually using JSON-RPC over stdin/stdout:

echo '{"jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {"protocolVersion": "2025-01-07", "capabilities": {"tools": {}}, "clientInfo": {"name": "test", "version": "1.0"}}}' | ./chinese-rhyme-mcp

Tool: chinese_rhyme

Finds Chinese rhyming words for a given Chinese character or word.

Parameters:

  • word (string, required): The Chinese character or word to find rhymes for

Example:

{
  "name": "chinese_rhyme",
  "arguments": {
    "word": "好"
  }
}

Returns: A list of Chinese characters/words that rhyme with the input.

API

This server uses the write.worz.io API endpoint:

Requirements

  • Go 1.21 or later
  • Internet connection to access the rhyme API