huly-mcp-sdk
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@huly-mcp-sdkShow me the status of issue PROJ-42"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
huly-mcp-sdk
The most complete MCP server for Huly — the open-source project management platform.
Connects Claude Desktop (and any MCP-compatible client) directly to your Huly workspace. Manage projects, issues, milestones, components, documents, labels, and more — all via natural language.
Tools (36 total)
Category | Tool | Description |
Projects |
| List all projects in the workspace |
| Get project details + available statuses | |
| Create a new tracker project with a unique identifier | |
Issues |
| List issues with optional status / priority filters |
| Get full details of an issue (e.g. | |
| Create a new issue | |
| Update title, status, priority, assignee, due date, component, milestone | |
| Permanently delete an issue by identifier | |
Comments |
| Add a comment to an issue |
| List all comments on an issue (includes IDs for | |
| Delete a specific comment by ID | |
Time Tracking |
| Log hours spent on an issue |
Labels |
| List all labels with color + usage count |
| Create a new label with an optional hex color | |
| Add a label to an issue (auto-creates if it doesn't exist) | |
| Remove a label from an issue | |
Relations |
| Mark two issues as related (bidirectional) |
| Mark an issue as blocked by another issue | |
| Set or clear the parent epic of an issue | |
Members |
| List workspace members |
Milestones |
| List milestones for a project |
| Create a milestone with a target date and status | |
Components |
| List components (sub-areas) in a project |
| Create a new component with optional lead | |
Documents |
| List document teamspaces |
| Create a new teamspace (top-level document folder) | |
| List documents in a teamspace | |
| Permanently delete a document by ID | |
| Get document metadata + content | |
| Create a new document in a teamspace | |
| Write Markdown content to a document — Mermaid diagrams render natively | |
| Link a document to an issue — appears in the Relations panel | |
Search |
| Full-text search across all issues |
Related MCP server: Huly MCP Server
Requirements
Node.js >= 20
A Huly account — huly.app (cloud) or self-hosted
Quick Start
npx huly-mcp-sdk setupThis runs the interactive setup wizard — sends a one-time code to your email (works for Google/GitHub SSO accounts too) and writes your .env file automatically.
Your workspace slug is the part of your Huly URL after the domain: huly.app/myteam → slug is myteam.
Compatible Clients
The same MCP server works across all major AI coding tools. Pick your client.
Auth note: All config examples below use
HULY_TOKEN. If you have issues with token expiry, use email + password instead — just replace theenvblock with:"HULY_EMAIL": "your@email.com", "HULY_PASSWORD": "yourpassword", "HULY_WORKSPACE": "your-workspace-slug"See Manual Auth for details on both options.
Claude Desktop
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"huly": {
"command": "npx",
"args": ["huly-mcp-sdk"],
"env": {
"HULY_TOKEN": "your-token",
"HULY_WORKSPACE": "your-workspace-slug"
}
}
}
}Restart Claude Desktop after saving.
Claude Code (CLI)
claude mcp add huly -e HULY_TOKEN=your-token -e HULY_WORKSPACE=your-slug -- npx huly-mcp-sdkOr scope it to a single project only:
claude mcp add huly --scope project -e HULY_TOKEN=your-token -e HULY_WORKSPACE=your-slug -- npx huly-mcp-sdkVerify it's connected: claude mcp list
Cursor
Create or edit ~/.cursor/mcp.json:
{
"mcpServers": {
"huly": {
"command": "npx",
"args": ["huly-mcp-sdk"],
"env": {
"HULY_TOKEN": "your-token",
"HULY_WORKSPACE": "your-workspace-slug"
}
}
}
}Restart Cursor. The tools appear in the Agent panel under MCP.
Windsurf (Codeium)
Create or edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"huly": {
"command": "npx",
"args": ["huly-mcp-sdk"],
"env": {
"HULY_TOKEN": "your-token",
"HULY_WORKSPACE": "your-workspace-slug"
}
}
}
}Restart Windsurf. MCP tools are available to the Cascade AI panel.
VS Code — Cline extension
Install the Cline extension
Open Cline settings → MCP Servers → Edit MCP Settings
Add:
{
"huly": {
"command": "npx",
"args": ["huly-mcp-sdk"],
"env": {
"HULY_TOKEN": "your-token",
"HULY_WORKSPACE": "your-workspace-slug"
}
}
}VS Code — Continue extension
Install the Continue extension
Edit
~/.continue/config.jsonand add to themcpServersarray:
{
"mcpServers": [
{
"name": "huly",
"command": "npx",
"args": ["huly-mcp-sdk"],
"env": {
"HULY_TOKEN": "your-token",
"HULY_WORKSPACE": "your-workspace-slug"
}
}
]
}Zed
Edit ~/.config/zed/settings.json and add a context_servers entry:
{
"context_servers": {
"huly": {
"command": {
"path": "npx",
"args": ["huly-mcp-sdk"],
"env": {
"HULY_TOKEN": "your-token",
"HULY_WORKSPACE": "your-workspace-slug"
}
}
}
}
}OpenAI Codex CLI
Edit ~/.codex/config.json and add to mcpServers:
{
"mcpServers": {
"huly": {
"type": "stdio",
"command": "npx",
"args": ["huly-mcp-sdk"],
"env": {
"HULY_TOKEN": "your-token",
"HULY_WORKSPACE": "your-workspace-slug"
}
}
}
}Any other MCP-compatible client
The server uses standard stdio transport. If your tool supports MCP, the config pattern is always the same:
command:
npxargs:
["huly-mcp-sdk"]env:
HULY_TOKEN+HULY_WORKSPACE
Consult your tool's MCP documentation for the exact config file location.
Alternative (avoid npx cold-start): Clone and build once, then point directly at the compiled binary:
git clone https://github.com/varaprasadreddy9676/huly-mcp.git cd huly-mcp && npm install && npm run buildReplace
"command": "npx", "args": ["huly-mcp-sdk"]with"command": "node", "args": ["/absolute/path/to/huly-mcp/dist/index.js"]in any config above.
Example Prompts
Projects & issues:
"Create a new project called 'Mobile App' with identifier MOBILE"
"List all in-progress issues in the PROJ project"
"Create a high-priority issue in PROJ titled 'Fix login timeout'"
"Update PROJ-42 status to Done, assign it to Sarah, and move it to the Auth component"
"Search for issues related to authentication"
"Add a comment to PROJ-15 saying the fix is deployed"
"List all comments on PROJ-42 to see the discussion"
Milestones & components:
"Create a milestone 'v2.0 Launch' in PROJ with target date 2026-06-01"
"List milestones for the PROJ project"
"Create a component called 'Auth' in PROJ"
"List all components in PROJ"
Labels & relations:
"Add the label 'bug' to PROJ-42"
"Create a label called 'backend' with color #3b82f6"
"Mark PROJ-55 as blocked by PROJ-12"
"Set PROJ-42 as a subtask of PROJ-5"
Time tracking:
"Log 2.5 hours on PROJ-42 for the database refactor"
Documents:
"List all documents in the Engineering teamspace"
"Create a document called 'API Design' in the Engineering teamspace"
"Update the API Design document with this Markdown: ..."
"Add a Mermaid architecture diagram to the EP1 document"
"Link document abc123 to issue PROJ-42"
"Delete the second comment on PROJ-15"
Document Content
Reading: get_document
get_document always returns full metadata (title, teamspace, comments, snapshots). To also fetch and display the text content, set the optional HULY_FRONT_URL env var:
"env": {
"HULY_TOKEN": "...",
"HULY_WORKSPACE": "myteam",
"HULY_FRONT_URL": "https://front.huly.app"
}For self-hosted Huly, set HULY_FRONT_URL to your own front service URL (e.g. http://localhost:8083).
Writing: update_document
update_document accepts a documentId and a markdown string and writes rich structured content directly to the document — no manual editing required.
Supported Markdown:
Element | Syntax |
Headings |
|
Bold / inline code |
|
Paragraphs | plain text |
Bullet lists |
|
Pipe tables |
|
Code blocks |
|
Mermaid diagrams |
|
Example:
update_document({
documentId: "abc123",
markdown: `# Service Flow\n\n` +
`## Architecture\n\n` +
"```mermaid\n" +
"flowchart TD\n" +
" A([User]) --> B[Browse Catalogue]\n" +
" B --> C[Pay via Razorpay]\n" +
" C --> D[Order Confirmed]\n" +
"```\n\n" +
"## Business Rules\n\n" +
"- Payment required before confirmation\n" +
"- All orders synced to HIS\n"
})The Mermaid block renders as a live interactive diagram in Huly's document editor — not as a code block.
Bulk CSV Import
Import many issues at once from a CSV file — useful for migrating from other tools:
node scripts/import-csv.js tasks.csv PROJCSV format:
title,priority,status,dueDate
Fix login bug,High,In Progress,2025-04-01
Add dark mode,Medium,,
Improve performance,Urgent,,2025-05-01Required column: title. Optional: priority (Urgent/High/Medium/Low), status (must match a status name in the project), dueDate (YYYY-MM-DD).
Manual Auth
Create a .env file in the project root (or pass via env in your client config):
Option A — Email + password (recommended):
Works if you have a password set on your Huly account (Profile → Security → Change password).
HULY_EMAIL=your@email.com
HULY_PASSWORD=yourpassword
HULY_WORKSPACE=your-workspace-slugOption B — Token:
HULY_WORKSPACE=your-workspace-slug
HULY_TOKEN=your-token-hereTo get a token: go to huly.app → open browser DevTools → Application → Local Storage → https://huly.app → copy the token value.
Tokens expire after some time. If you get an auth error, switch to email + password auth or refresh the token from DevTools.
Self-hosted Huly:
HULY_ACCOUNTS_URL=https://your-huly-instance.com/account
HULY_FRONT_URL=https://your-huly-instance.comArchitecture
Single long-lived WebSocket connection — connects once per process via
@hcengineering/server-client, not per tool call (model load takes 1–3 s, so this keeps tools fast)Lazy init — connects on the first tool call so auth errors surface clearly in Claude
Dual auth — OTP token (works for Google/GitHub SSO) or email + password
Stdio transport — standard MCP transport compatible with Claude Desktop and any MCP client
Changelog
v0.5.6 — delete_document
New:
delete_document— permanently delete a document by ID
v0.5.5 — create_teamspace
New:
create_teamspace— create a new document teamspace (top-level folder for organising documents by project or team)
v0.5.2 — delete_comment + link_document
New:
delete_comment— delete a specific comment from an issue by ID;list_commentsnow includes comment IDs in its outputNew:
link_document— link a Huly document to an issue; the document appears in the Relations panel on the issue
v0.5.0 — Document Writing + Bug Fixes
New:
update_document— write Markdown to any Huly document programmatically;\``mermaid` blocks use Huly's native node type and render as interactive diagramsFix:
IssueStatusqueries — statuses are stored globally in Huly (core:space:Model), not per-project; removed incorrect space filter that caused "no statuses found" errors oncreate_issue,update_issue, andlist_issuesFix:
create_project— setsmembers: [currentUser]so newly created projects are immediately visible in the Huly UI
v0.4.0
log_time,list_comments, component/milestone assignment onupdate_issue
v0.3.1
get_document,create_document
v0.3.0
create_project,create_milestone, assignee support on issues
Links
MCP Registry: https://registry.modelcontextprotocol.io (search "huly-mcp")
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceComplete MCP server for Huly project management with 209 tools across 23 categories — issues, projects, tasks, comments, documents, cards, channels, calendar, time tracking, test management, processes, custom fields, attachments, leads and more. Includes custom task type support (Ticket, Bug, Feature) with project-scoped status workflows and read-side Process plugin tools.9MIT
- AlicenseNot gradedqualityAmaintenanceMCP server providing full coverage of the Huly SDK — issues, projects, workspaces, members, and account management.1611MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for Huly project management — enables managing issues, documents, people, and labels through natural language.AGPL 3.0

@spatialy/huly-mcpofficial
AlicenseNot gradedqualityCmaintenanceMCP server for Huly platform enabling project management, issue tracking, and collaboration through natural language.222MIT
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
A MCP server built for developers enabling Git based project management with project and personal…
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/varaprasadreddy9676/huly-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server