Huly MCP Server
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 Serverlist my open issues"
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 Server
MCP server providing full coverage of the Huly SDK — issues, projects, workspaces, members, and account management. Two transports: stdio for local tools and Streamable HTTP for remote clients. Tested against self-hosted Huly. May also work with Huly Cloud (not yet tested).
Why This Exists
Huly has no public API. The only programmatic access is through their JavaScript SDK, which connects via WebSocket. This server wraps that SDK and exposes MCP tools over both stdio and Streamable HTTP transports — compatible with Codex, Claude Code, VS Code, n8n, and any MCP client.
Related MCP server: huly-mcp
Documentation Map
Install: add the package to a project or run it with
npx.Quick Start: configure Huly authentication.
Integrations: connect Codex, Claude Code, HTTP clients, or Docker.
Configuration Reference: environment variables and workspace behavior.
Network Configurations: local, remote, proxy, and access-gateway setups.
Maintenance: repair scripts for known data consistency issues.
Development and Publishing: tests, linting, and package publishing.
API Reference: available MCP tools and response conventions.
SDK Capability Audit: supported lifecycles, known gaps, and coverage gates are tracked in
docs/SDK_CAPABILITY_AUDIT.md.
Install
From npm
npm install @bgx4k3p/huly-mcp-serverOr run directly with npx:
npx @bgx4k3p/huly-mcp-serverFrom source
git clone https://github.com/bgx4k3p/huly-mcp-server.git
cd huly-mcp-server
npm installQuick Start
Authentication
Configure Huly access first, then choose one integration in the next section. You can authenticate with either email/password or a token.
Email and Password
export HULY_URL=https://your-huly-instance.com
export HULY_EMAIL=your@email.com
export HULY_PASSWORD=your-password
export HULY_WORKSPACE=your-workspaceToken (recommended)
Get a token from your Huly credentials — no env vars needed beforehand:
npx -y @bgx4k3p/huly-mcp-server --get-token \
-e your@email.com \
-p your-password \
-u https://your-huly-instance.comFrom a source checkout, use node src/index.mjs --get-token with the same
flags.
Then use it:
export HULY_URL=https://your-huly-instance.com
export HULY_TOKEN=<paste-token-from-above>
export HULY_WORKSPACE=your-workspaceThe token does not expire. You can store it in a secrets manager and stop exposing your password in environment variables.
For local stdio clients, the project config examples below set
HULY_WORKSPACE per repo. Optionally set HULY_PROJECT when a repository maps
cleanly to one Huly project. After connecting a client, call
get_huly_context first to verify that the workspace, project, URL host, and
auth mode are what you expect.
Integrations
Use stdio for local coding agents and Streamable HTTP for remote clients or automation systems.
Codex (project-scoped stdio)
Codex supports MCP servers from config.toml. For project-specific Huly
workspaces, generate a repo-local Codex config layer with literal routing
values:
npx -y @bgx4k3p/huly-mcp-server --init-codex \
--url https://your-huly-instance.com \
--workspace my-workspaceOptionally set a default project identifier for project-scoped tools:
npx -y @bgx4k3p/huly-mcp-server --init-codex \
--url https://your-huly-instance.com \
--workspace my-workspace \
--project PROJThis creates .codex/config.toml:
[mcp_servers.huly]
command = "npx"
args = ["-y", "@bgx4k3p/huly-mcp-server"]
env_vars = ["HULY_TOKEN"]
startup_timeout_sec = 20
tool_timeout_sec = 120
[mcp_servers.huly.env]
HULY_URL = "https://your-huly-instance.com"
HULY_WORKSPACE = "my-workspace"
HULY_PROJECT = "PROJ"Keep secrets like HULY_TOKEN in your user environment. Write non-secret
routing values (HULY_URL, HULY_WORKSPACE, and optionally HULY_PROJECT)
literally in each Codex project config so every repo, workspace folder, or
editor project points to the intended Huly instance. This avoids accidentally
inheriting a stale editor environment such as HULY_URL=http://localhost:8087.
HULY_PROJECT is optional; when present, tools that naturally operate inside
one project can omit the project argument. Explicit tool arguments still win.
If you intentionally want project routing to come from environment variables,
use the matching *-env flags instead:
npx -y @bgx4k3p/huly-mcp-server --init-codex \
--url-env HULY_URL \
--workspace-env HULY_WORKSPACE \
--project-env HULY_PROJECTThat writes the routing variables to Codex env_vars instead of literal values
under [mcp_servers.huly.env].
Omitting --url leaves HULY_URL as a runtime environment reference. The
generator does not read and copy the current shell's
HULY_URL value into the project config unless you pass it explicitly with
--url.
.codex/ is local machine configuration and should not be committed to a
public repository. Keep project-specific Codex config private unless you have
intentionally sanitized it for sharing.
After starting a fresh Codex session in the project, run get_huly_context.
It returns sanitized runtime context: default workspace, default project,
Huly URL host, auth mode, and package version.
Codex may show local stdio MCP servers as unauthenticated in /mcp.
That label refers to MCP-level authentication, not Huly authentication.
Use get_huly_context to confirm the downstream Huly auth mode is token
or email_password.
Claude Code (project-scoped stdio)
Generate .mcp.json for Claude Code with literal routing values:
npx -y @bgx4k3p/huly-mcp-server --init-claude \
--url https://your-huly-instance.com \
--workspace my-workspaceOr route through environment variables instead:
npx -y @bgx4k3p/huly-mcp-server --init-claude \
--url-env HULY_URL \
--workspace-env HULY_WORKSPACE \
--project-env HULY_PROJECTWhen --url is omitted, --init-claude --workspace my-workspace writes
HULY_URL as ${HULY_URL}.
Or add the server manually from a local source checkout:
claude mcp add huly \
-e HULY_URL=https://your-huly-instance.com \
-e HULY_TOKEN=your-token \
-e HULY_WORKSPACE=my-workspace \
-- node /absolute/path/to/huly-mcp-server/src/index.mjsOr add to your .mcp.json manually (token auth — recommended):
{
"mcpServers": {
"huly": {
"command": "node",
"args": ["/path/to/huly-mcp-server/src/index.mjs"],
"env": {
"HULY_URL": "${HULY_URL}",
"HULY_TOKEN": "${HULY_TOKEN}",
"HULY_WORKSPACE": "my-workspace"
}
}
}
}For project-specific workspaces, keep secrets in environment variables. Use
literal routing values when the repo maps to one Huly instance/workspace, or
*-env flags when you want the runtime environment to select them.
HULY_PROJECT is optional; set it only when the repo maps cleanly to one Huly
project:
"env": {
"HULY_URL": "${HULY_URL}",
"HULY_TOKEN": "${HULY_TOKEN}",
"HULY_WORKSPACE": "my-workspace",
"HULY_PROJECT": "PROJ"
}Or with email/password:
{
"mcpServers": {
"huly": {
"command": "node",
"args": ["/path/to/huly-mcp-server/src/index.mjs"],
"env": {
"HULY_URL": "${HULY_URL}",
"HULY_EMAIL": "${HULY_EMAIL}",
"HULY_PASSWORD": "${HULY_PASSWORD}",
"HULY_WORKSPACE": "my-workspace"
}
}
}
}Generate Both Project Configs
npx -y @bgx4k3p/huly-mcp-server --init-all \
--url https://your-huly-instance.com \
--workspace my-workspaceWith an optional default project:
npx -y @bgx4k3p/huly-mcp-server --init-all \
--url https://your-huly-instance.com \
--workspace my-workspace \
--project PROJOr generate both configs with routing values read from runtime environment variables:
npx -y @bgx4k3p/huly-mcp-server --init-all \
--url-env HULY_URL \
--workspace-env HULY_WORKSPACE \
--project-env HULY_PROJECT--init-claude creates or updates .mcp.json while preserving other MCP
servers. --init-codex creates .codex/config.toml for trusted Codex
projects while preserving unrelated Codex settings. Existing Huly entries are
not replaced unless --force is passed.
Streamable HTTP (n8n, VS Code, remote clients)
Start the HTTP MCP server:
npm run start:server
# MCP endpoint: http://localhost:3001/mcp
# Health check: http://localhost:3001/healthAny MCP client that supports Streamable HTTP can connect to
http://localhost:3001/mcp. This includes n8n (v1.88+),
VS Code, and other MCP-compatible tools.
To secure the endpoint, set a bearer token:
MCP_AUTH_TOKEN=your-secret npm run start:serverClients must then include Authorization: Bearer your-secret in requests.
Docker
docker build -t huly-mcp-server .
# Streamable HTTP server (recommended)
docker run -d \
-p 3001:3001 \
-e HULY_URL=https://your-huly-instance.com \
-e HULY_TOKEN=your-token \
-e HULY_WORKSPACE=my-workspace \
huly-mcp-server
# MCP stdio mode
docker run -i \
-e HULY_URL=https://your-huly-instance.com \
-e HULY_TOKEN=your-token \
-e HULY_WORKSPACE=my-workspace \
huly-mcp-server node src/mcp.mjsVerify the Connection
In any MCP client, call get_huly_context first. It confirms the active
workspace, optional project, Huly URL host, auth mode, and package version
without exposing secrets.
Then ask your MCP client things like:
"List my issues in the PROJ project"
"Create a bug report for the login page crash"
"Summarize the PROJ project — what's overdue?"
"Break down this feature into subtasks using the feature template"
All tools have detailed descriptions optimized for AI agents.
MCP Resources are also available at huly://projects/{id} and huly://issues/{id}.
Configuration Reference
Environment Variables
Variable | Required | Default | Description |
Huly Connection | |||
| No |
| Huly instance URL |
| No | - | Auth token (alternative to email/password) |
| No | - | Huly login email (required if no token) |
| No | - | Huly login password (required if no token) |
| Yes* | - | Default workspace slug |
| No | - | Optional default project identifier for project-scoped tools |
| No |
| SDK transport: |
| No |
| Connection pool TTL in ms (30 min) |
| No |
| Result serializer: |
| No |
| Tool catalog: |
| No | Derived from Huly credentials | Optional stable HMAC secret for signed cursors |
| No |
| Privacy-safe response metrics: |
| No | - | Mode-0600 JSONL destination when metrics mode is |
| No | - | JSON object of extra headers for protected Huly origins |
| No | - | One extra outbound header per env var, with |
HTTP Server | |||
| No |
| HTTP server port (auto-assigns if taken) |
| No | - | Bearer token for HTTP auth (disabled if unset) |
| No |
| Max requests per minute per IP |
| No |
| CORS allowed origins (comma-separated) |
*HULY_WORKSPACE is required for MCP stdio mode. For HTTP mode it can
be omitted if every request specifies a workspace via the tool arguments.
Compact responses are minified and omit unreviewed raw SDK fields under
extra, while preserving documented null and empty values. Set
_meta["com.huly/responseMode"] on one tool call to override its mode. HTTP
clients can set Huly-Response-Mode while creating a session; this is captured
for that session only. raw returns full SDK fields as minified JSON.
Tool profiles reduce the catalog sent to the model at session startup. full
exposes all 91 tools, project exposes the 64 workspace/project tools, and
read exposes 39 read-only tools. For Claude research/review sessions, set
HULY_TOOL_PROFILE=read; use project when the session must edit issues, and
use full only for workspace/account administration. Calls outside the active
profile fail instead of being silently routed.
HTTP Server Authentication
The HTTP server optionally requires a bearer token. This protects your server from unauthorized access — it's separate from Huly's own authentication.
# Generate a token
openssl rand -hex 32
# Start with auth enabled
MCP_AUTH_TOKEN=your-token-here npm run start:serverIf MCP_AUTH_TOKEN is not set, auth is disabled (fine for local-only usage).
MCP stdio mode does not use this token — stdio is inherently local.
Multi-Workspace
All tools accept an optional workspace parameter. The connection pool
caches clients by workspace slug with configurable TTL:
{"tool": "list_projects", "arguments": {"workspace": "workspace-a"}}If omitted, the HULY_WORKSPACE env var is used as the default.
Network Configurations
Local:
HULY_URL=http://localhost:8087Remote:
HULY_URL=https://huly.example.comBehind nginx proxy: Point to the proxy port
Protected deployments and access gateways
If your Huly deployment sits behind an identity-aware proxy or access gateway that expects extra request headers, configure those headers with environment variables. This works for Cloudflare Access service tokens, oauth2-proxy, Authelia, GCP IAP, and custom API gateways.
The configured headers are added to Huly-bound HTTP requests and to the
WebSocket upgrade. Huly authentication is still separate: keep using
HULY_TOKEN or HULY_EMAIL/HULY_PASSWORD for Huly itself.
JSON form:
HULY_OUTBOUND_HEADERS_JSON='{"X-Service-Token":"abc123","X-Tenant":"team-foo"}'Discrete form (one env var per header — easier for secret managers):
HULY_OUTBOUND_HEADER_X_SERVICE_TOKEN=abc123
HULY_OUTBOUND_HEADER_X_TENANT=team-fooHeader names from discrete env vars are normalized by stripping the prefix
and replacing _ with - (HULY_OUTBOUND_HEADER_X_API_KEY → X-API-KEY).
HTTP header names are case-insensitive, so the wire result is equivalent to
any pretty-cased form your gateway documents.
Example: Cloudflare Access service token
HULY_OUTBOUND_HEADER_CF_ACCESS_CLIENT_ID=xxx.access
HULY_OUTBOUND_HEADER_CF_ACCESS_CLIENT_SECRET=yyyScope and operator responsibility
Headers are sent to HULY_URL and to every origin advertised in Huly's own
/config.json response (accounts, collaborator, transactor, files, upload,
rekoni, etc.). You are responsible for ensuring those advertised origins are
services you control and trust to receive these headers.
Outbound header values are bearer-style credentials. If /config.json
advertises a *_URL pointing at a third-party origin you do not control, such
as a public CDN or vendor SaaS, the configured headers will be transmitted
there. Review your Huly server's /config.json before enabling this feature.
Authorization, Cookie, and Proxy-Authorization are rejected at
startup — they would collide with Huly's own bearer token. Use a gateway
that signals identity via a separate header.
Fallback for gateways without service-token support
Prefer header-based service authentication. Use bypass policies only as a last resort, scoped narrowly to Huly API paths, and only when you accept that those paths are reachable without the gateway's identity check:
/config.json/_accounts/_transactor/_collaborator/_rekoni
Testing
Uses Node.js built-in node:test and node:assert — no test framework dependencies.
The live integration suite runs twice: once with WebSocket transport and once
with REST transport. Focused unit suites cover dispatch, MCP tool metadata, and
project config generation.
npm test # Both transports (ws + rest)
npm run test:ws # WebSocket only
npm run test:rest # REST onlyTest coverage:
Suite | Description |
Unit | Constants, ID parsing, rate limiting, auth logic |
Integration | Full CRUD lifecycle against live Huly |
Dispatch | Schema to dispatch to client param forwarding for all tools |
MCP metadata | Tool registration, |
Project config |
|
Account-level | Workspaces, profile, social IDs |
Mock | Destructive ops, token auth via mocks |
Streamable HTTP | MCP protocol over HTTP: init, tools, resources, auth, rate limiting |
100% dispatch coverage — every tool's params are traced end-to-end through the dispatch table to the client method.
Maintenance
Maintenance scripts live in the repository scripts/ directory. They are
source-checkout tools and are not included in the published npm package.
Repair Reported Time Totals
Versions before 2.4.3 could write string-concatenated reportedTime values
when logging time against issues that already had string numeric fields. The
repair script recomputes each issue's reportedTime from its
TimeSpendReport records, which are the source of truth.
Always review the dry-run first:
node scripts/repair-reported-time.mjsApply after reviewing the output:
node scripts/repair-reported-time.mjs --applyOptional filters:
node scripts/repair-reported-time.mjs --workspace=my-workspace
node scripts/repair-reported-time.mjs --workspace=my-workspace --project=PROJBack up Huly data before applying repairs in production.
Development and Publishing
For local development:
npm install
npm run lint
node --test test/initCodex.test.mjs test/mcpShared.test.mjsThe custom pack script bundles only the Huly SDK packages needed at runtime and prunes UI/frontend bloat from the published tarball:
npm run pack
npm publish bgx4k3p-huly-mcp-server-<version>.tgz --access publicArchitecture
src/
client.mjs # HulyClient — all business logic and SDK calls
helpers.mjs # Shared constants, markup conversion, JSDOM polyfills
dispatch.mjs # Tool-to-method dispatch table
pool.mjs # Connection pool — caches clients by workspace with TTL
mcpShared.mjs # Shared MCP server factory — tool definitions + resources
mcp.mjs # MCP stdio entry point (Codex, Claude Code)
server.mjs # MCP Streamable HTTP entry point (n8n, VS Code, remote)
initCodex.mjs # Project config helpers for Codex and Claude Code
index.mjs # CLI entry point — --get-token, --init-* modes + MCP re-exportClaude / Codex -> stdio -> mcp.mjs -> mcpShared.mjs -> pool -> client -> Huly SDK
n8n / remote -> Streamable HTTP -> server.mjs -> mcpShared.mjs -> pool -> client -> Huly SDKResponse Format
All read operations return known fields at the top level with
resolved, human-readable values (e.g., status names instead of IDs,
formatted dates). Any additional fields from the Huly SDK that aren't
explicitly mapped appear in an extra object — this future-proofs
the API so new SDK fields are visible without a code update.
{
"id": "PROJ-42",
"title": "Fix the bug",
"status": "In Progress",
"priority": "High",
"type": "Task",
"parent": "PROJ-10",
"childCount": 3,
"createdOn": 1719700000000,
"completedAt": null,
"extra": {
"_id": "69bab168...",
"_class": "tracker:class:Issue",
"space": "69b819b7...",
"kind": "tracker:taskTypes:Issue"
}
}Text fields (description, comment) support three input formats
via descriptionFormat / format parameter:
markdown (default) — rendered as rich text in the Huly UI
html — raw HTML, converted to rich text
plain — stored as unformatted text
API Reference
Full list of all MCP tools available through this server.
Account and Workspace Management
Tool | Description |
| Show sanitized runtime context: default workspace, default project, Huly URL host, auth mode, and package version |
| List all accessible workspaces |
| Get workspace details by slug |
| Create a new workspace |
| Rename a workspace |
| Permanently delete a workspace |
| List workspace members and roles |
| Change a member's role |
| Get current user's account info |
| Get current user's profile |
| Update profile fields |
| Change password |
| Change username |
Invites
Tool | Description |
| Send workspace invite email |
| Resend pending invite |
| Generate shareable invite link |
Integrations, Mailboxes, Social IDs, Subscriptions
Tool | Description |
| Full CRUD for integrations |
| Mailbox management |
| Person/social ID management |
| List account subscriptions |
Projects
Tool | Description | Text Format |
| List projects with optional | -- |
| Get project by identifier with optional granular expansions | -- |
| Create a new project |
|
| Update project fields, member/owner sets, and defaults | -- |
| Archive or unarchive a project | -- |
| Permanently delete a project | -- |
| Aggregated project metrics and health | -- |
Issues
Tool | Description | Text Format |
| List issues with filters, projections, and granular expansions | -- |
| Get an issue with projections and granular expansions | -- |
| Create a new issue |
|
| Update issue fields |
|
| Permanently delete an issue | -- |
| Full-text search across projects | -- |
| Issues assigned to current user | -- |
| Issue activity timeline with comments, time reports, labels, and sub-issues | -- |
| Create multiple issues at once |
|
| Move issue between projects | -- |
| Create from predefined templates | -- |
Stored Issue Templates
These tools manage persistent Huly templates, including embedded child templates,
labels, task types, related documents, and descriptions. The Huly UI can use these
templates to create issues. create_issues_from_template is the separate predefined
workflow generator.
Tool | Description |
| Create a stored template and optional child templates |
| Read a template by |
| Page through a project's stored templates |
| Update fields; supplied arrays replace the full set, empty arrays clear |
| Delete a template while retaining previously created issues |
Preserve returned child IDs when editing child templates. Empty assignee, component, or milestone values clear those fields. An empty task type resets to the project's default type.
Project members and owners accept exact member names or account UUIDs.
Creation always includes the creator as a member and owner. Updates replace
supplied sets; use include: ["members", "owners", "defaults"] to read them back.
A project must retain an owner, and a private project must retain an owner who is
also a member. Removing a member also removes their project-role assignments.
Labels
Tool | Description |
| List all labels in the workspace |
| Find a label by name |
| Create a new label with optional color |
| Update label name, color, or description |
| Permanently delete a label |
| Add a label to an issue |
| Remove a label from an issue |
Relations
Tool | Description |
| Add bidirectional "related to" link |
| Remove bidirectional "related to" link |
| Add "blocked by" dependency |
| Remove "blocked by" dependency |
| Set parent issue (epic/task hierarchy) |
Components
Tool | Description | Text Format |
| List components in a project | -- |
| Find a component by name | -- |
| Create a new component (optional lead) |
|
| Update component name, description, or lead |
|
| Delete a component | -- |
Milestones
Tool | Description | Text Format |
| List milestones and collaborator members with optional bounded | -- |
| Get milestone details and collaborator members with optional bounded | -- |
| Create a new milestone with optional collaborators |
|
| Update milestone fields or replace/clear collaborators |
|
| Delete a milestone and clear or move assigned issues | -- |
| Set or clear milestone on an issue | -- |
Members
Tool | Description |
| List all active workspace members |
| Find a member by name (fuzzy match) |
Comments
Tool | Description | Text Format |
| List all comments on an issue | -- |
| Get a specific comment by ID | -- |
| Add a comment to an issue |
|
| Update comment text |
|
| Delete a comment | -- |
Time Tracking
Tool | Description | Text Format |
| Log actual time spent | -- |
| List time reports for an issue | -- |
| Get a specific time report by ID | -- |
| Update hours, description, date, or employee attribution | -- |
| Delete a time report | -- |
Metadata
Tool | Description |
| List workspace project types (valid |
| List task types for a project |
| Find a task type by name |
| List issue statuses |
| Find a status by name |
Text format: All text fields default to
markdown. SetdescriptionFormat(orformatfor comments) to"markdown","html", or"plain". Content is passed through unmodified -- the format tells Huly how to render it.
Projections and explicit expansions
list_issues and get_issue accept fields for base-field projection and
include for granular expansions. Supported expansions are description,
comments, activity, timeReports, relations, blockedBy, and children.
Each collection has an independent limit (default 20, maximum 100) and returns
*Count/*Truncated metadata. List description previews default to 500
characters; use description_preview_chars: 0 for full list descriptions.
get_issue returns the complete description by default and never silently
truncates it.
Compact issue lists use a concise default field projection, while raw lists
retain the complete base-field set. include is the only expansion mechanism;
there is no broad-detail boolean shortcut.
Projects accept include: [milestones, components, labels, members, owners, defaults] and fetch
only the selected related collections. Milestones accept include: [issues];
issues_limit defaults to 20 and caps at 100, with issuesCount and
issuesTruncated in the result.
For measured Claude parent/subagent patterns, optional MCP tool scoping, and prompt examples, see Token-efficient Claude workflows. For the breaking v3 API changes, see the v3 upgrade guide; the release validation matrix records the regression gates.
CRUD Coverage
Entity | Create | Read | List | Update | Delete |
Project |
|
|
|
|
|
Issue |
|
|
|
|
|
Label |
|
|
|
|
|
Component |
|
|
|
|
|
Milestone |
|
|
|
|
|
Issue Template |
|
|
|
|
|
Comment |
|
|
|
|
|
Time Report |
|
|
|
|
|
Member | -- |
|
| -- | -- |
Status | -- |
|
| -- | -- |
Task Type | -- |
|
| -- | -- |
Project Type | -- | -- |
| -- | -- |
Issue Templates
Use create_issues_from_template:
Template | Creates |
| Parent + design/implement/test/docs/review sub-issues |
| Parent + reproduce/root-cause/fix/regression-test sub-issues |
| Planning/standup/review/retro ceremony issues |
| Parent + freeze/QA/changelog/staging/prod/verify sub-issues |
Templates use task types like Epic/Bug when available, falling back to the workspace default type otherwise.
Security
npm audit reports moderate vulnerabilities in Svelte (SSR XSS).
These come from Huly SDK transitive dependencies — the SDK shares packages
with Huly's web frontend. MCP server never renders HTML or uses Svelte.
The vulnerabilities are not exploitable in this context.
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 Connectors
- SupabaseOAuthcom.supabase
MCP server for interacting with the Supabase platform
The official Planning Center MCP server for interacting with your ministry's data.
The official MCP Server for the Mux API
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- AlicenseAqualityAmaintenanceMCP server for Huly (task tracker) integration62,17951MIT
- AlicenseNot gradedqualityDmaintenanceComplete 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 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.122MIT