Education
Generate APA 7, MLA 9, Chicago, IEEE, BibTeX, and RIS citations from a DOI, ISBN, URL, or manually-entered metadata.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/citation-generator' \
-H 'Content-Type: application/json' \
-d '{"lookup":"10.1038/nature12373 or 9780262533058","sourceType":"journal","title":"A Study on Renewable Energy Adoption","authors":"Smith, John\nDoe, Jane","year":"2024","journal":"Journal of Energy Policy","volume":"42","issue":"3","pages":"123-145","doi":"10.1234/example.2024.042","url":"https://..."}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/citation-generator| Name | Type | Required | Description |
|---|---|---|---|
| lookup | text | No | — |
| sourceType | select | No | — |
| title | text | No | — |
| authors | textarea | No | — |
| year | text | No | — |
| journal | text |
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-citation-generator": {
"name": "citation-generator",
"description": "Generate APA 7, MLA 9, Chicago, IEEE, BibTeX, and RIS citations from a DOI, ISBN, URL, or manually-entered metadata.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=citation-generator",
"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": "citation-generator",
"arguments": {
"lookup": "10.1038/nature12373 or 9780262533058",
"sourceType": "journal",
"title": "A Study on Renewable Energy Adoption",
"authors": "Smith, John\nDoe, Jane",
"year": "2024",
"journal": "Journal of Energy Policy",
"volume": "42",
"issue": "3",
"pages": "123-145",
"doi": "10.1234/example.2024.042",
"url": "https://..."
}
}
}| No |
| — |
| volume | text | No | — |
| issue | text | No | — |
| pages | text | No | — |
| doi | text | No | — |
| url | text | 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]