H

Height

Manage Height tasks and lists.

·No reviews yet
Repo
Share:

About

Auto-generated

Height is a Model Context Protocol server in the Productivity category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Height.

What is the Height MCP for?
The Height MCP integrates with Height to manage tasks and lists. It allows you to interact with your Height projects and productivity workflows programmatically.
How can I install the Height MCP into a client like Cline?
To install, you typically add the MCP's slug, 'height', to your client's configuration. The transport 'stdio' indicates it communicates via standard input/output, which Cline supports.
Does the Height MCP require authentication?
Yes, the Height MCP uses API key authentication. You will need to provide a valid API key from your Height account to use its functionalities.
What are some of the key capabilities of the Height MCP?
The Height MCP enables management of Height tasks and lists. It provides tooling to automate productivity workflows and interact with your Height data through a standard interface.
What is the licensing cost for the Height MCP?
The Height MCP's repository is on GitHub, suggesting open-source availability. However, any costs associated with the underlying Height service itself depend on your Height subscription plan.
Are there any prerequisites for using the Height MCP?
A critical prerequisite is an active Height account and a valid API key. Without these, the MCP cannot authenticate or interact with the Height service.

Install Height

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "height": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-height"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "height": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-height"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "height": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-height"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.