New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@zeroheight/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zeroheight/mcp-server

MCP server for zeroheight

npmnpm
Version
1.2.0
Version published
Weekly downloads
133
-35.44%
Maintainers
1
Weekly downloads
 
Created
Source

zeroheight MCP Server

MCP server for zeroheight

For a full walkthrough on how to use this MCP server, head over to our help centre article.

Install

Add to Claude Desktop or VSCode (including Cursor/Windsurf) config:

{
  "mcpServers": {
    "zeroheight-mcp": {
      "command": "npx",
      "args": ["-y", "@zeroheight/mcp-server@latest"],
      "env": {
        "ZEROHEIGHT_ACCESS_TOKEN": "zhat_abc123",
        "ZEROHEIGHT_CLIENT_ID": "zhci_abc123"
      }
    }
  }
}

Usage

Authentication

You will need to add your zeroheight authentication credentials as environment variables, which can be created using these instructions:

ZEROHEIGHT_CLIENT_ID="your-client-id"
ZEROHEIGHT_ACCESS_TOKEN="your-access-token"

Telemetry

To help improve the experience this MCP server uses Sentry for error tracking. If you don't want to share error data, you can disable it by setting the environment variable ZEROHEIGHT_MCP_DISABLE_TELEMETRY=true

Available Tools

The server provides these MCP tools:

list-styleguides List all accessible styleguides as resource links or markdown

get-styleguide-tree Get a navigation hierarchy for a styleguide with top-level navigation, categories, pages and tabs

list-pages List all accessible pages in a styleguide with optional search

get-page Get a styleguide page in the requested format (markdown or JSON)

Setup Examples

Claude Desktop

{
  "mcpServers": {
    "zeroheight": {
      "command": "npx",
      "args": ["-y", "@zeroheight/mcp-server@latest"],
      "env": {
        "ZEROHEIGHT_ACCESS_TOKEN": "zhat_abc123",
        "ZEROHEIGHT_CLIENT_ID": "zhci_abc123"
      }
    }
  }
}

VS Code

Create .vscode/mcp.json:

{
  "servers": {
    "zeroheight": {
      "command": "npx",
      "args": ["-y", "@zeroheight/mcp-server@latest"],
      "env": {
        "ZEROHEIGHT_ACCESS_TOKEN": "zhat_abc123",
        "ZEROHEIGHT_CLIENT_ID": "zhci_abc123"
      }
    }
  }
}

Example Usage

"List my styleguides"
"Show pages about buttons"
"Get the navigation for [styleguide name]"
"Find documentation about typography"

Requirements

  • Node.js 22+
  • zeroheight Client ID and Access Token

More info on setup can be found in the help centre article.

FAQs

Package last updated on 09 Sep 2025

Related posts