Skip to content

v0.1.1

Choose a tag to compare

@fuongz fuongz released this 06 Apr 04:35
· 29 commits to main since this release
3e4314f

Breaking Changes

  • Removed withStructured - the withStructured(full, structured) helper has been removed. If you were using it, return a ToolResult directly:

    // before
    return withStructured(fullData, { ok: true });
    
    // after
    return {
      content: [{ type: "text", text: JSON.stringify(fullData, null, 2) }],
      structuredContent: { ok: true },
    };
  • Removed meta injection into structuredContent - defineTool no longer merges meta fields (tool_version, tool_last_update) into structuredContent. Meta is still available for documentation/introspection purposes.

Documentation

  • Added client configuration guide covering Claude Desktop, Claude Code, Cursor, VSCode, and Claude Web (custom connectors)

Full Changelog: v0.1.0...v0.1.1