@al76/tools-and-spec-workflow-mcp
Version:
MCP server for spec-driven development workflow with real-time web dashboard
12 lines • 358 B
JavaScript
// Common types for the spec workflow MCP server
// Helper function to convert ToolResponse to MCP format
export function toMCPResponse(response, isError = false) {
return {
content: [{
type: "text",
text: JSON.stringify(response, null, 2)
}],
isError
};
}
//# sourceMappingURL=types.js.map