UNPKG

businessmap-mcp

Version:

MCP server for Businessmap Kanbanize, exposing tools for managing business entities like boards, cards, and columns, facilitating LLM interaction.

21 lines (20 loc) 486 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.handleApiResponse = handleApiResponse; function handleApiResponse(response) { let contentData; if (response.error) { contentData = JSON.stringify(response.error); } else { contentData = JSON.stringify(response.data); } return { content: [ { type: "text", text: contentData, }, ], }; }