Text Processing
Extract factual claims from a document, map each to its footnote/link/reference evidence, and flag unsourced, weak-source, duplicate-citation, and ambiguous-scope claims
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/claim-evidence-citation-mapper' \
-H 'Content-Type: application/json' \
-d '{"text":"Global temperatures rose about 1.1°C since 1880 [1]. Sea level may reach +1 m by 2100 (2). Renewable capacity tripled last decade.","citations":"[1] IPCC AR6, 2021.\n[2] NASA Sea Level Change Portal.","markerPattern":"","useAI":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/claim-evidence-citation-mapper| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | — |
| citations | textarea | No | — |
| markerPattern | text | No | — |
| useAI | 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-claim-evidence-citation-mapper": {
"name": "claim-evidence-citation-mapper",
"description": "Extract factual claims from a document, map each to its footnote/link/reference evidence, and flag unsourced, weak-source, duplicate-citation, and ambiguous-scope claims",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=claim-evidence-citation-mapper",
"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": "claim-evidence-citation-mapper",
"arguments": {
"text": "Global temperatures rose about 1.1°C since 1880 [1]. Sea level may reach +1 m by 2100 (2). Renewable capacity tripled last decade.",
"citations": "[1] IPCC AR6, 2021.\n[2] NASA Sea Level Change Portal.",
"markerPattern": "",
"useAI": true
}
}
}Questions or issues? Contact [email protected]