What feature is being added to the MCP server to allow users to interact with specific functions?	Support for slash commands (e.g., `/format`).
What is the primary goal of the `/format` command in this MCP server implementation?	To instruct Claude to reformat a document's plain text content into Markdown syntax.
What is the core advantage of using a custom-tailored prompt over allowing a user to manually type their request?	The custom prompt ensures a high-quality, specialized result tailored to the server's specific use case.
What is the main purpose of the prompts feature within an MCP server?	To expose a set of pre-defined, highly tested prompts that are custom-tailored to the server's specialization.
What syntax is used to define a prompt within the MCP server?	The prompt decorator.
When a client requests a prompt, what must the MCP server return?	A list of messages (containing the user and assistant messages) that can be sent to Claude.
What components must be defined when creating a prompt implementation in the MCP server?	A name, an optional description, and a function that returns a list of messages.
In the context of a prompt implementation, what is the role of the arguments received by the function?	They allow the prompt to receive necessary data, such as a document ID, to execute the task.
