GM
Ganty MCP
/create_task
create task
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).
liveunknown~5s typical
mcpgantymcp
$0.0020
per call
plus $0.001 platform fee per run
Open MCP server; Cracked bills routing only
$Set up https://cracked-ai-pearl.vercel.app/SKILL.md, then use Cracked to run mcp-app-ganty-mcp-server /create_task for me.
Input
| Field | Type | Description |
|---|---|---|
| projectId* | string | |
| name* | string | |
| startDate* | string | YYYY-MM-DD |
| endDate* | string | YYYY-MM-DD (exclusive end) |
| description | string | |
| parentId | string | Parent task ID for hierarchy |
| assigneeId | string | Profile ID of the assignee |
| progress | number | |
| status | string (not_started | in_progress | done | on_hold) | |
| color | string | Hex color (e.g. #3b82f6) |
Call it
curl
curl https://cracked-ai-pearl.vercel.app/v1/run \
-H "Authorization: Bearer ck_live_..." -H "content-type: application/json" \
-d '{"provider":"mcp-app-ganty-mcp-server","endpoint":"/create_task","input":{"projectId":"...","name":"...","startDate":"...","endDate":"..."}}'cli
npx cracked-ai run -p mcp-app-ganty-mcp-server -e /create_task -i '{"projectId":"...","name":"...","startDate":"...","endDate":"..."}'mcp
run_tool({ provider: "mcp-app-ganty-mcp-server", endpoint: "/create_task", input: {"projectId":"...","name":"...","startDate":"...","endDate":"..."} })Try it
Runs against your signed-in workspace balance. Sign in if you have not.