Text Processing
Look up any Chinese character or phrase in the Ping Shui Yun (平水韵, 106 rhyme groups, Song dynasty) and Ci Lin Zheng Yun (词林正韵, 19 parts, Qing dynasty) rhyme books: tone class (平/上/去/入), pingze (平/仄) pattern, and cross-system mapping. Reverse lookup lists every character of a rhyme group and checks whether a set of characters can rhyme together, with canonical poem rhyme-foot examples from Li Bai, Du Fu, Su Shi, Li Qingzhao and Yue Fei.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/ping-shui-yun-ci-lin-zheng-yun-classical-chinese-poetry-rhyme-index' \
-H 'Content-Type: application/json' \
-d '{"query":"月落乌啼霜满天","mode":"auto","rhymeSystem":"both","includeExamples":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/ping-shui-yun-ci-lin-zheng-yun-classical-chinese-poetry-rhyme-index| Name | Type | Required | Description |
|---|---|---|---|
| query | text | Yes | — |
| mode | select | No | — |
| rhymeSystem | select | No | — |
| includeExamples | checkbox | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-ping-shui-yun-ci-lin-zheng-yun-classical-chinese-poetry-rhyme-index": {
"name": "ping-shui-yun-ci-lin-zheng-yun-classical-chinese-poetry-rhyme-index",
"description": "Look up any Chinese character or phrase in the Ping Shui Yun (平水韵, 106 rhyme groups, Song dynasty) and Ci Lin Zheng Yun (词林正韵, 19 parts, Qing dynasty) rhyme books: tone class (平/上/去/入), pingze (平/仄) pattern, and cross-system mapping. Reverse lookup lists every character of a rhyme group and checks whether a set of characters can rhyme together, with canonical poem rhyme-foot examples from Li Bai, Du Fu, Su Shi, Li Qingzhao and Yue Fei.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=ping-shui-yun-ci-lin-zheng-yun-classical-chinese-poetry-rhyme-index",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "ping-shui-yun-ci-lin-zheng-yun-classical-chinese-poetry-rhyme-index",
"arguments": {
"query": "月落乌啼霜满天",
"mode": "auto",
"rhymeSystem": "both",
"includeExamples": true
}
}
}Questions or issues? Contact [email protected]