Gantt chart SaaS with server-side critical path and dependency-aware shift-impact tools, plus CRUD.
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"app-ganty-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in cloud
MCP Server for kubernetes management commands
Upload, organize, search, and transform images, videos, and files with AI-powered tools.
Static infrastructure analysis via MCP: databases, AWS services, IaC, and code patterns.
Official Sevalla MCP — full PaaS API access through just 2 tools.
MCP Security Weekly
Get CVE alerts and security updates for app.ganty/mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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 d