Skip to content

Releases: zig-wasm/zig-mcp

Release v1.4.0

10 Sep 22:26
b574273

Choose a tag to compare

Highlights

The MCP server now uses the locally installed Zig compiler by default, ensuring documentation always matches the user's actual Zig version. In local mode, docs are served by your installed Zig via zig std, requiring no network and matching your actual Zig version. This is the recommended setup for most users.

If you prefer downloading documentation from ziglang.org instead of using your local Zig, enable remote mode explicitly and choose a version.

Both options have documentation in README.md, and thanks to @jedisct1 for these changes!

What's Changed

  • Fix command syntax in README for Claude Code by @jedisct1 in #9
  • Add local Zig std server integration for documentation by @jedisct1 in #10

Full Changelog: v1.3.0...v1.4.0

Release v1.3.0

09 Sep 20:53
e297fcc

Choose a tag to compare

What's Changed

  • Update alias handling and cycle detection in decl rendering by @Afirium #8

Full Changelog: v1.2.0...v1.3.0

Release v1.2.0

27 Aug 15:58
eb9b08e

Choose a tag to compare

What's Changed

  • Update to latest version of Zig lib by @Afirium
  • Builtin function parsing bug fixed

Full Changelog: v1.1.2...v1.2.0

Release v1.1.2

13 Aug 07:59
4480a9a

Choose a tag to compare

What's Changed

  • Update to latest version of Zig lib by @Afirium

Full Changelog: v1.1.1...v1.1.2

Release v1.1.1

26 Jul 09:34
ff8b251

Choose a tag to compare

What's Changed

  • Update extractBuiltinFunctions to support forceUpdate by @Afirium

Full Changelog: v1.1.0...v1.1.1

Release v1.1.0

26 Jul 08:55
7eed099

Choose a tag to compare

What's Changed

  • Document usage with Bun, Roo Code and Augment Code by @jedisct1 in #3
  • Force update sources.tar by @Afirium in #4

New Contributors

Full Changelog: v1.0.0...v1.1.0

Release v1.0.0

20 Jul 23:25

Choose a tag to compare

Initial Release (v1.0.0)

We're excited to announce the first stable release of Zig Docs MCP - a Model Context Protocol server that provides up-to-date documentation for the Zig programming language standard library and builtin functions.

Installation

Claude Code

claude mcp add zig-docs npx -y zig-mcp@latest --version master --update-policy manual

Claude Desktop

Add to your MCP configuration:

{
  "mcpServers": {
    "zig-docs": {
      "command": "npx",
      "args": ["-y", "zig-mcp@latest", "--version", "master", "--update-policy", "manual"]
    }
  }
}