UNPKG

@hellocoop/admin-mcp

Version:

Model Context Protocol (MCP) for Hellō Admin API.

28 lines (25 loc) 844 B
// MCP Prompts for Hello Admin API // Placeholder for future prompt functionality /** * Get all prompt definitions for MCP * @returns {Array} - Array of prompt definitions (currently empty) */ export function getPromptDefinitions() { // Future prompt definitions will go here // Examples might include: // - Application setup wizard prompts // - OAuth configuration guidance prompts // - Legal document generation prompts // - Troubleshooting prompts return []; } /** * Handle prompt execution * @param {string} promptName - Name of the prompt to execute * @param {Object} args - Prompt arguments * @returns {Promise<Object>} - Prompt execution result */ export async function handlePromptCall(promptName, args) { // Future prompt handlers will go here throw new Error(`Prompt not implemented: ${promptName}`); }