We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheTailorRetailored/latex-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"name": "equation",
"description": "Creates a numbered equation with optional label",
"parameters": [
{
"name": "equation",
"type": "string",
"description": "The LaTeX equation content",
"required": true
},
{
"name": "label",
"type": "string",
"description": "Optional label for referencing (without 'eq:' prefix)",
"required": false,
"default": ""
}
],
"template": "\\begin{equation}{{#if label}}\\label{eq:{label}}{{/if}}\n{equation}\n\\end{equation}"
}