_ index / mcp streamable-http

ganty-mcp

https://ganty.app

94081f3b2284ecb7

api record

Ganty is a Gantt chart SaaS for project management.

This MCP server exposes tools to:

endpoint
https://ganty.app/api/mcp
protocol
streamable-http ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live

checked 2h ago

uptime
100%
latency
322ms

last good check

priced tools
0

of 15 tools

_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 15 tools
1 auth-required 14 never probed 1 of 15 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • list_workspaces auth-required 2h ago

    Get all workspaces the authenticated user is a member of.

    mcp-tool

    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }
    arguments 5 lines
  • list_projects unknown never probed

    List all projects in a workspace (excluding archived).

    mcp-tool

    {
      "type": "object",
      "required": [
        "workspaceId"
      ],
      "properties": {
        "workspaceId": {
          "type": "string",
          "description": "Workspace ID (UUID)"
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • create_project unknown never probed

    Create a new project in a workspace. Returns the created project. Subject to plan-based project count limits.

    mcp-tool

    {
      "type": "object",
      "required": [
        "workspaceId",
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "Project name"
        },
        "color": {
          "type": "string",
          "description": "Hex color (e.g. #3b82f6). Defaults to blue."
        },
        "endDate": {
          "type": "string",
          "description": "YYYY-MM-DD. Optional."
        },
        "startDate": {
          "type": "string",
          "description": "YYYY-MM-DD. Defaults to today."
        },
        "description": {
          "type": "string"
        },
        "workspaceId": {
          "type": "string",
          "description": "Workspace ID (UUID)"
        }
      },
      "additionalProperties": false
    }
    arguments 33 lines
  • delete_project unknown never probed

    Permanently delete a project. All tasks, milestones, and dependencies inside the project are also removed. This cannot be undone.

    mcp-tool

    {
      "type": "object",
      "required": [
        "projectId"
      ],
      "properties": {
        "projectId": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
    arguments 12 lines
  • list_tasks unknown never probed

    List tasks in a project. Supports optional filtering by name (search), status, and assignee.

    mcp-tool

    {
      "type": "object",
      "required": [
        "projectId"
      ],
      "properties": {
        "search": {
          "type": "string",
          "description": "Filter task name by case-insensitive substring"
        },
        "status": {
          "enum": [
            "not_started",
            "in_progress",
            "done",
            "on_hold"
          ],
          "type": "string"
        },
        "projectId": {
          "type": "string",
          "description": "Project ID (UUID)"
        },
        "assigneeId": {
          "type": "string",
          "description": "Filter by assignee profile ID"
        }
      },
      "additionalProperties": false
    }
    arguments 30 lines
  • get_task unknown never probed

    Get detailed information about a single task, including assignees and dependencies.

    mcp-tool

    {
      "type": "object",
      "required": [
        "taskId"
      ],
      "properties": {
        "taskId": {
          "type": "string",
          "description": "Task ID (UUID)"
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • list_milestones unknown never probed

    List milestones in a project (key dates such as launch or review gates).

    mcp-tool

    {
      "type": "object",
      "required": [
        "projectId"
      ],
      "properties": {
        "projectId": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
    arguments 12 lines
  • create_milestone unknown never probed

    Add a milestone (key date) to a project.

    mcp-tool

    {
      "type": "object",
      "required": [
        "projectId",
        "name",
        "date"
      ],
      "properties": {
        "date": {
          "type": "string",
          "description": "YYYY-MM-DD"
        },
        "name": {
          "type": "string"
        },
        "color": {
          "type": "string",
          "description": "Hex color (defaults to #f59e0b)"
        },
        "projectId": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
    arguments 25 lines
  • create_task unknown never probed

    Create a new task in a project. Dates must be in YYYY-MM-DD format. End date is exclusive (a 1-day task has end = start + 1 day).

    mcp-tool

    {
      "type": "object",
      "required": [
        "projectId",
        "name",
        "startDate",
        "endDate"
      ],
      "properties": {
        "name": {
          "type": "string"
        },
        "color": {
          "type": "string",
          "description": "Hex color (e.g. #3b82f6)"
        },
        "status": {
          "enum": [
            "not_started",
            "in_progress",
            "done",
            "on_hold"
          ],
          "type": "string"
        },
        "endDate": {
          "type": "string",
          "description": "YYYY-MM-DD (exclusive end)"
        },
        "parentId": {
          "type": "string",
          "description": "Parent task ID for hierarchy"
        },
        "progress": {
          "type": "number",
          "maximum": 100,
          "minimum": 0
        },
        "projectId": {
          "type": "string"
        },
        "startDate": {
          "type": "string",
          "description": "YYYY-MM-DD"
        },
        "assigneeId": {
          "type": "string",
          "description": "Profile ID of the assignee"
        },
        "description": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
    arguments 55 lines
  • update_task unknown never probed

    Update fields of an existing task. Only provided fields will be modified.

    mcp-tool

    {
      "type": "object",
      "required": [
        "taskId"
      ],
      "properties": {
        "name": {
          "type": "string"
        },
        "color": {
          "type": "string"
        },
        "status": {
          "enum": [
            "not_started",
            "in_progress",
            "done",
            "on_hold"
          ],
          "type": "string"
        },
        "taskId": {
          "type": "string"
        },
        "endDate": {
          "type": "string",
          "description": "YYYY-MM-DD"
        },
        "progress": {
          "type": "number",
          "maximum": 100,
          "minimum": 0
        },
        "startDate": {
          "type": "string",
          "description": "YYYY-MM-DD"
        },
        "assigneeId": {
          "type": [
            "string",
            "null"
          ],
          "description": "null to unassign"
        },
        "description": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
    arguments 50 lines
  • set_task_progress unknown never probed

    Update the progress percentage of a task (0-100). Status is auto-derived: 0=not_started, 1-99=in_progress, 100=done.

    mcp-tool

    {
      "type": "object",
      "required": [
        "taskId",
        "progress"
      ],
      "properties": {
        "taskId": {
          "type": "string"
        },
        "progress": {
          "type": "number",
          "maximum": 100,
          "minimum": 0
        }
      },
      "additionalProperties": false
    }
    arguments 18 lines
  • add_dependency unknown never probed

    Add a finish-to-start dependency between two tasks in the same project.

    mcp-tool

    {
      "type": "object",
      "required": [
        "predecessorId",
        "successorId"
      ],
      "properties": {
        "lagDays": {
          "type": "number",
          "description": "Optional lag in days after predecessor finishes"
        },
        "successorId": {
          "type": "string",
          "description": "Task that can start after predecessor finishes"
        },
        "predecessorId": {
          "type": "string",
          "description": "Task that must finish first"
        }
      },
      "additionalProperties": false
    }
    arguments 22 lines
  • delete_task unknown never probed

    Delete a task. Child tasks and dependencies are removed as well.

    mcp-tool

    {
      "type": "object",
      "required": [
        "taskId"
      ],
      "properties": {
        "taskId": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
    arguments 12 lines
  • get_critical_path unknown never probed

    Calculate the critical path of a project on the Ganty side and return it as data (don't ask the model to reason over raw task lists). Uses forward/backward CPM with progress-aware remaining duration. Returns critical_path tasks in order, per-task earliest/latest start/finish + slack, project_end_date, and total_duration_days. v1 limitations: Finish-to-Start dependencies only (Ganty has no other types), calendar days by default (business_days=true skips Sat/Sun but no holiday table), ignores multi-period segments, no resource calendars. Returns { error: 'cyclic_dependency', cycle } if a cycle is detected.

    mcp-tool

    {
      "type": "object",
      "required": [
        "project_id"
      ],
      "properties": {
        "as_of_date": {
          "type": "string",
          "description": "YYYY-MM-DD. Start point for projecting remaining work. Defaults to today."
        },
        "project_id": {
          "type": "string",
          "description": "Project ID (UUID)"
        },
        "business_days": {
          "type": "boolean",
          "description": "If true, skip Saturday and Sunday in duration calculations. National holidays are still treated as working days (v1 has no holiday table). Defaults to false."
        }
      },
      "additionalProperties": false
    }
    arguments 21 lines
  • reschedule_and_propagate unknown never probed

    Compute the downstream impact of shifting a single task. Default is dry_run (no DB writes); set mode='commit' to actually persist the changes. Cascades forward only (no pull): successors are pushed only if their predecessor's new end + lag would violate their current start. Tasks with progress=100 are treated as pinned; pass pinned_task_ids for additional pins. When a pin would be violated, the change is recorded in 'conflicts' and not propagated further. In mode='commit', if any conflicts exist nothing is written (all-or-nothing transaction). Same v1 limitations as get_critical_path: FS only, calendar days by default, no holiday table, ignores multi-period segments.

    mcp-tool

    {
      "type": "object",
      "required": [
        "task_id"
      ],
      "properties": {
        "mode": {
          "enum": [
            "dry_run",
            "commit"
          ],
          "type": "string",
          "description": "dry_run (default): compute and return; do not modify DB. commit: write to DB in a single transaction, but only if no conflicts. Audit logged on commit."
        },
        "shift": {
          "type": "string",
          "description": "Relative shift like '+3d' (push back) or '-2d' (pull earlier). Specify exactly one of shift or new_start_date."
        },
        "task_id": {
          "type": "string",
          "description": "Task ID (UUID) to shift"
        },
        "business_days": {
          "type": "boolean",
          "description": "If true, skip Sat/Sun in duration math. Defaults to false."
        },
        "new_start_date": {
          "type": "string",
          "description": "Absolute new start date as YYYY-MM-DD. Specify exactly one of shift or new_start_date."
        },
        "pinned_task_ids": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Additional task IDs to treat as pinned (in addition to progress=100 tasks)."
        },
        "respect_dependencies": {
          "type": "boolean",
          "description": "If false, only the named task moves; successors are not cascaded. Default true."
        }
      },
      "additionalProperties": false
    }
    arguments 44 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ how we know
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
median latency
work
attempts
0
accepted
0
rejected
0
acceptance rate
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
reviews
paid reviews
0
positive
0
negative
0
score

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.