Lattice Hq MCP Server

MCP Server for Lattice HQ API - Access goals, users, reviews, and feedback

Local serverstdioGo

What is the Lattice Hq MCP MCP server?

If you already use Lattice Hq MCP, the lattice hq mcp mcp server is the piece that lets your assistant work with it directly. MCP Server for Lattice HQ API - Access goals, users, reviews, and feedback.

What the server does

A Model Context Protocol (MCP) server for Lattice HQ that enables AI models to interact with your Lattice performance management platform.

Installation

lattice-hq-mcp-server on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • lattice_get_users — Get all users
  • lattice_get_user — Get user by ID
  • lattice_get_user_direct_reports — Get user's direct reports
  • lattice_get_me — Get current user
  • lattice_get_goals — Get all goals
  • lattice_get_goal — Get goal by ID
  • lattice_get_user_goals — Get goals for a user
  • lattice_get_review_cycles — Get all review cycles
  • lattice_get_review_cycle — Get review cycle by ID
  • lattice_get_review_cycle_reviewees — Get reviewees for a cycle
  • lattice_get_feedbacks — Get all feedback
  • lattice_get_feedback — Get feedback by ID

Credentials and setup notes

Configuration is passed through the environment: LATTICE_API_URL, LATTICE_API_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 18 or higher - Lattice HQ account with API access - Lattice API token

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Lattice Hq MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Lattice Hq MCP's toolset — lattice_get_users, lattice_get_user, lattice_get_user_direct_reports and 11 more — is a fair guide to whether it matches your workflow. It is maintained by cyrilnoah1; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
lattice_get_usersGet all users
lattice_get_userGet user by ID
lattice_get_user_direct_reportsGet user's direct reports
lattice_get_meGet current user
lattice_get_goalsGet all goals
lattice_get_goalGet goal by ID
lattice_get_user_goalsGet goals for a user
lattice_get_review_cyclesGet all review cycles
lattice_get_review_cycleGet review cycle by ID
lattice_get_review_cycle_revieweesGet reviewees for a cycle
lattice_get_feedbacksGet all feedback
lattice_get_feedbackGet feedback by ID
lattice_get_departmentsGet all departments
lattice_get_departmentGet department by ID

How to install the Lattice Hq MCP MCP server

{
  "mcpServers": {
    "lattice-hq": {
      "command": "npx",
      "args": ["-y", "lattice-hq-mcp-server", "--api-key=YOUR-TOKEN", "--stdio"],
      "env": {
        "LATTICE_API_URL": "https://your-company.latticehq.com"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js 18 or higher - Lattice HQ account with API access - Lattice API token
VariableDescriptionRequired
LATTICE_API_URLEndpoint or connection string the server talks to.Yes
LATTICE_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Lattice Hq MCP to lattice get users.
  • Use Lattice Hq MCP to lattice get user.
  • Use Lattice Hq MCP to lattice get user direct reports.

Frequently asked questions

It connects Lattice Hq MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (lattice_get_users, lattice_get_user, lattice_get_user_direct_reports, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Lattice Hq MCP directly.