Files
homeassistant-mcp/src/helpers.ts
2024-12-12 10:54:57 -08:00

5 lines
175 B
TypeScript

export const formatToolCall = (obj: any, isError: boolean = false) => {
return {
content: [{ type: "text", text: JSON.stringify(obj, null, 2), isError }],
};
}