Text Processing
Audit manuscript for number/date/unit/quote/dash/heading/noun consistency and emit a style sheet; optional AI drift detection
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/manuscript-style-consistency-auditor' \
-H 'Content-Type: application/json' \
-d '{"text":"# Title\n\n### Skipped H2\n\nShe said \"hello\" and “goodbye”.\nThe train-- departed.","numberStyle":"smart","quoteStyle":"curly","dashStyle":"em","headings":true,"nouns":"","useAI":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/manuscript-style-consistency-auditor| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | — |
| numberStyle | select | No | — |
| quoteStyle | select | No | — |
| dashStyle | select | No | — |
| headings | checkbox | No | — |
| nouns |
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-manuscript-style-consistency-auditor": {
"name": "manuscript-style-consistency-auditor",
"description": "Audit manuscript for number/date/unit/quote/dash/heading/noun consistency and emit a style sheet; optional AI drift detection",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=manuscript-style-consistency-auditor",
"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": "manuscript-style-consistency-auditor",
"arguments": {
"text": "# Title\n\n### Skipped H2\n\nShe said \"hello\" and “goodbye”.\nThe train-- departed.",
"numberStyle": "smart",
"quoteStyle": "curly",
"dashStyle": "em",
"headings": true,
"nouns": "",
"useAI": false
}
}
}| textarea |
| No |
| — |
| useAI | checkbox | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]