UNPKG

docwriter-mcp-server

Version:

A Model Context Protocol (MCP) server for programmatic creation, modification, and compilation of structured LaTeX documents. Enables AI agents and automated workflows to generate reports, articles, and papers from templates, with secure, structured conte

14 lines (13 loc) 640 B
/** * @fileoverview Handles the registration of the `docwriter_create_latex_document` tool * with an MCP server instance. * @module src/mcp-server/tools/docwriter_create_latex_document/registration */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; /** * Registers the 'docwriter_create_latex_document' tool and its handler with the MCP server. * * @param {McpServer} server - The MCP server instance to register the tool with. * @returns {Promise<void>} A promise that resolves when tool registration is complete. */ export declare const registerCreateLatexDocumentTool: (server: McpServer) => Promise<void>;