1. Conduid
  2. Developer Tools
  3. Zig MCP
MCP server · Developer Tools

Zig MCP

Zig ZLS MCP for Claude Code 🤖

Unclaimed MIT last commit a year ago agentaiclaudellmmcpzigzls
69Good

Scored yesterday · breakdown

About Zig MCP

Zig MCP is an MCP server published by zig-wasm in the Developer Tools category: zig ZLS MCP for Claude Code 🤖. It has been installed 0 times through Conduid.

The repository has 132 stars and 5 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx zig-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Zig MCP

Powered by Claude · Grounded in docs

I know everything about Zig MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v1.4.0Release v1.4.0 · 10 Sep 2025Highlights 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…
v1.3.0Release v1.3.0 · 9 Sep 2025What's Changed Update alias handling and cycle detection in decl rendering by @Afirium #8 Full Changelog**: https://github.com/zig-wasm/zig-mcp/compare/v1.2.0...v1.3.0
v1.2.0Release v1.2.0 · 27 Aug 2025What's Changed Update to latest version of Zig lib by @Afirium Builtin function parsing bug fixed Full Changelog**: https://github.com/zig-wasm/zig-mcp/compare/v1.1.2...v1.2.0
v1.1.2Release v1.1.2 · 13 Aug 2025What's Changed Update to latest version of Zig lib by @Afirium Full Changelog**: https://github.com/zig-wasm/zig-mcp/compare/v1.1.1...v1.1.2
v1.1.1Release v1.1.1 · 26 Jul 2025What's Changed Update extractBuiltinFunctions to support forceUpdate by @Afirium Full Changelog**: https://github.com/zig-wasm/zig-mcp/compare/v1.1.0...v1.1.1

README

Zig Docs MCP

Model Context Protocol (MCP) server that provides up-to-date documentation for the Zig programming language standard library and builtin functions.

It uses the same approach as Zig's official autodoc (ziglang.org) by reading STD lib source files directly through a WASM module. However instead of returning HTML, it outputs Markdown which significantly reduces token usage.

By default, the server uses your locally installed Zig compiler to serve documentation, ensuring you always get docs that match your actual Zig version. It can also fetch documentation from ziglang.org if needed.

[!TIP] Add use zigdocs to your prompt if you want to explicitly instruct the LLM to use Zig docs tools. Otherwise, LLM will automatically decide when to utilize MCP tools based on the context of your questions.

Tools

  • list_builtin_functions - Lists all available Zig builtin functions. Builtin functions are provided by the compiler and are prefixed with '@'. The comptime keyword on a parameter means that the parameter must be known at compile time. Use this to discover what functions are available, then use 'get_builtin_function' to get detailed documentation.
  • get_builtin_function - Search for Zig builtin functions by name and get their documentation, signatures, and usage information. Returns all matching functions ranked by relevance.
  • search_std_lib - Search the Zig standard library for declarations by name. Returns a list of matching items with their fully qualified names. Use this to discover available types, functions, and constants in the standard library.
  • get_std_lib_item - Get detailed documentation for a specific standard library item by its fully qualified name (e.g., "std.ArrayList.init"). Returns comprehensive documentation including function signatures, parameters, errors, examples, and source code. Set get_source_file: true to retrieve the entire source file where the item is implemented.

Commands

The CLI provides flexible options for version control and update management:

# Start MCP server
zig-mcp --doc-source local

# Use specific Zig version from ziglang.org instead of local Zig
zig-mcp --doc-source remote --version 0.14.1

# Enable automatic daily updates
zig-mcp --doc-source remote --update-policy daily

# Update documentation without starting MCP server (only for remote)
zig-mcp update --version 0.15.1

# Start local web server to view documentation
zig-mcp view --version 0.15.1

Version options --version:

  • master (default) - Latest development version from Zig's master branch
  • 0.14.1, 0.14.0, etc. - Specific Zig release versions

Update policies --update-policy:

  • manual (default) - No automatic updates, manual control only
  • daily - Check for documentation updates once per day
  • startup - Update documentation every time the server starts

Documentation sources --doc-source:

  • local (default) - Use your locally installed Zig compiler's documentation server (zig std)
  • remote - Download documentation from ziglang.org

Documentation Sources

Local Mode (Default)

The server automatically uses your local Zig installation to serve documentation via zig std. This ensures:

  • Documentation always matches your installed Zig version
  • No network requests needed for standard library docs
  • Faster response times

Remote Mode

When using --doc-source remote, documentation is fetched from ziglang.org and cached in platform-specific directories:

  • Linux: ~/.cache/zig-mcp/
  • macOS: ~/Library/Caches/zig-mcp/
  • Windows: %LOCALAPPDATA%\zig-mcp\

Installation

The installation examples below use the local documentation source by default. 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. For downloading docs from ziglang.org instead, see Remote Documentation (Optional) below.

Claude Code

Using npx (Node.js)

claude mcp add zig-docs -- npx -y zig-mcp@latest

Using bunx (Bun)

claude mcp add zig-docs -- bunx zig-mcp@latest

Roo Code

  1. Click the MCP button in Roo Code
  2. Select "Edit Global MCP" or "Edit Project MCP"
  3. Add the configuration from the JSON template below

Augment Code

Navigate to Settings → MCP Servers → Add Server and use the JSON template below.

Claude Desktop

Add the JSON configuration below to your MCP settings file.

JSON Configuration Template

Node.js:

{
  "mcpServers": {
    "zig-docs": {
      "command": "npx",
      "args": ["-y", "zig-mcp@latest"]
    }
  }
}

Bun:

{
  "mcpServers": {
    "zig-docs": {
      "command": "bunx",
      "args": ["zig-mcp@latest"]
    }
  }
}

Remote Documentation (Optional)

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

Using npx (Node.js)

claude mcp add zig-docs -- npx -y zig-mcp@latest --doc-source remote --version master

Using bunx (Bun)

claude mcp add zig-docs -- bunx zig-mcp@latest --doc-source remote --version 0.14.1

Node.js (remote):

{
  "mcpServers": {
    "zig-docs": {
      "command": "npx",
      "args": ["-y", "zig-mcp@latest", "--doc-source", "remote", "--version", "master"]
    }
  }
}

Bun (remote):

{
  "mcpServers": {
    "zig-docs": {
      "command": "bunx",
      "args": ["zig-mcp@latest", "--doc-source", "remote", "--version", "0.14.1"]
    }
  }
}

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Zig MCP

How do I install Zig MCP?

Run npx zig-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Zig MCP safe to use with an AI agent?

Its trust score is 69 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Zig MCP still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.