Releases: zig-wasm/zig-mcp
Release v1.4.0
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
What's Changed
Full Changelog: v1.2.0...v1.3.0
Release v1.2.0
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
Release v1.1.1
What's Changed
- Update extractBuiltinFunctions to support forceUpdate by @Afirium
Full Changelog: v1.1.0...v1.1.1
Release v1.1.0
Release v1.0.0
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 manualClaude Desktop
Add to your MCP configuration:
{
"mcpServers": {
"zig-docs": {
"command": "npx",
"args": ["-y", "zig-mcp@latest", "--version", "master", "--update-policy", "manual"]
}
}
}