Server data from the Official MCP Registry
Gantt chart SaaS with server-side critical path and dependency-aware shift-impact tools, plus CRUD.
Gantt chart SaaS with server-side critical path and dependency-aware shift-impact tools, plus CRUD.
Remote endpoints: streamable-http: https://ganty.app/api/mcp
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
Endpoint verified · Requires authentication · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"app-ganty-mcp-server": {
"url": "https://ganty.app/api/mcp"
}
}
}From the project's GitHub README.
Ganty is a Gantt chart SaaS with a built-in Model Context Protocol (MCP) server that lets AI clients like Claude Desktop and Claude Code drive your projects in natural language — and computes critical paths and shift-impact server-side rather than asking the LLM to do math.
Status: v1.0.0 — production endpoint at
https://ganty.app/api/mcp(Streamable HTTP) Free on every Ganty plan including Free.
Most MCP servers expose CRUD over an existing API. Ganty's also exposes calculation tools that compute on the server and return JSON — so the LLM never has to reason about dates, dependencies, or critical paths.
get_critical_path — forward/backward-pass CPM with progress-aware remaining duration. Returns the critical path tasks in order, per-task earliest/latest start/finish, slack, projected end date. Detects cycles before computing and returns error: 'cyclic_dependency' instead of hanging or guessing.reschedule_and_propagate — simulate or commit a task shift. Default mode is dry_run (no DB writes). Push-only cascade respects pinned tasks (anything at progress=100 or in pinned_task_ids) and reports conflicts instead of overwriting. commit mode wraps everything in an all-or-nothing transaction.claude_desktop_config.json) or Claude Code (.mcp.json at project root):
{
"mcpServers": {
"ganty": {
"url": "https://ganty.app/api/mcp",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}
"List my Ganty projects""What's the critical path for the e-commerce rebuild project?""If I push the payments task by +3 days, when does release ship?"Full setup walk-through: https://ganty.app/guide/mcp-integration
| Tool | Description |
|---|---|
list_workspaces | Workspaces the token's user belongs to |
list_projects | Projects in a workspace |
list_tasks | Tasks in a project (filter by name/status/assignee) |
get_task | Single task with assignees + dependencies |
list_milestones | Milestones in a project |
get_critical_path | Server-side CPM with slack and total duration |
| Tool | Description |
|---|---|
create_project, delete_project | Project lifecycle |
create_task, update_task, delete_task | Task lifecycle |
set_task_progress | Update task progress (auto-sets status) |
add_dependency | Finish-to-Start dependency between two tasks |
create_milestone | Add a milestone |
reschedule_and_propagate | Shift a task, cascade through dependencies, dry-run or commit |
reschedule_and_propagate is classified as a write tool even in dry_run mode (it shares the same compute path as commit and we don't want read-only tokens running unlimited simulations).
We prefer explicit non-support over silent wrong answers. Every response from the calculation tools includes a limitations array.
business_days: true skips Sat/Sun only (no holiday table)progress=100 automatically pinned; supply pinned_task_ids for additional pinshttps://ganty.app/api/mcpgnty_...) issued from the Ganty dashboard. Tokens are scoped read or write.reschedule_and_propagate commit mode is wrapped in a Prisma transaction; conflicts abort without writesThe calculation logic lives in pure TypeScript functions backed by 28 golden tests asserting concrete dates and day counts (linear chain shifts, diamond merges, cycle detection within 2 seconds, progress-aware remaining duration, hand-calculated CPM with slack, business-day mode, lag-day handling, push-only cascade).
MIT for this documentation repository. The Ganty server itself is a hosted SaaS; the MCP endpoint is a feature of every Ganty workspace.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.