Health
Project pulse (floating/deep/slow/rapid…) and tongue (pale/red/purple/coating) signs onto the Shanghan Lun six-meridian (六经辨证) templates with classical formula correspondence
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/tcm-pulse-and-tongue-pattern-zhang-zhongjing-decoder' \
-H 'Content-Type: application/json' \
-d '{"pulse":["floating","tight"],"tongueBody":"thin_white","coating":["thin_white"],"symptoms":"aversion to cold, no sweat, body ache, fever"}'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/tcm-pulse-and-tongue-pattern-zhang-zhongjing-decoder| Name | Type | Required | Description |
|---|---|---|---|
| pulse | select | No | — |
| tongueBody | select | No | — |
| coating | select | No | — |
| symptoms | textarea | 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-tcm-pulse-and-tongue-pattern-zhang-zhongjing-decoder": {
"name": "tcm-pulse-and-tongue-pattern-zhang-zhongjing-decoder",
"description": "Project pulse (floating/deep/slow/rapid…) and tongue (pale/red/purple/coating) signs onto the Shanghan Lun six-meridian (六经辨证) templates with classical formula correspondence",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=tcm-pulse-and-tongue-pattern-zhang-zhongjing-decoder",
"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": "tcm-pulse-and-tongue-pattern-zhang-zhongjing-decoder",
"arguments": {
"pulse": [
"floating",
"tight"
],
"tongueBody": "thin_white",
"coating": [
"thin_white"
],
"symptoms": "aversion to cold, no sweat, body ache, fever"
}
}
}Questions or issues? Contact [email protected]