# ITM Platform — MCP server on mcp.ai > Connect your ITM Platform account and use 10 tools for project management straight from your AI agent. Connect with your own API key. ITM Platform provides modern project, portfolio, task, service, financial, risk, and resource management APIs plus read-only DataMart analytics. By: mcp.ai · official Page: https://mcp.ai/itm_platform ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_itm_platform?ms=1787291100000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/itm_platform/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/itm_platform/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/itm_platform/skill.md Postman collection (v2.1): https://mcp.ai/itm_platform/postman.json ## Tools - itm_platform_aggregate_datamart_components(pipeline: object[]) — Run a bounded read-only DataMart aggregation over project and service records for portfolio analytics. - itm_platform_create_project(name: string, type_id?: integer, end_date?: string, status_id?: integer, start_date?: string, description?: string, priority_id?: integer, internal_code?: string, is_kanban_project?: boolean, performing_unit_id?: integer, internal_cost_center?: string) — Create an ITM Platform project with its schedule and optional account-specific classification IDs. This changes customer data and has no v2 delete counterpart. - itm_platform_create_task(name: string, details?: string, end_date?: string, sprint_id?: string, type_name?: string, project_id: integer, start_date?: string, status_name?: string, priority_name?: string, swimlane_name?: string, parent_task_id?: string, display_in_portfolio?: boolean) — Create a task in an ITM Platform project using account-defined type, priority, and status names. - itm_platform_get_project(project_id: integer) — Return the full current details of one project by its ITM Platform project ID. - itm_platform_list_reference_data(kind: string) — List account-defined project or task statuses, priorities, or types needed to form valid project and task mutations. - itm_platform_search_datamart_components(sort?: object, limit?: integer, where?: object, project?: object, next_cursor?: string) — Search the read-only DataMart for project or service analytics records and return one offset-paginated page. - itm_platform_search_projects(fields?: string[], filter?: object, page_size?: integer, next_cursor?: string) — Search projects by account-specific filters and return one page of project summaries with a continuation cursor. - itm_platform_search_tasks(fields?: string[], filter?: object, page_size?: integer, next_cursor?: string) — Search tasks across accessible projects and return one page of task summaries with a continuation cursor. - itm_platform_update_project(name?: string, type_id?: integer, end_date?: string, status_id?: integer, project_id: integer, start_date?: string, description?: string, priority_id?: integer, internal_code?: string, performing_unit_id?: integer, internal_cost_center?: string) — Update selected fields of an existing ITM Platform project and return the provider result. Verify important changes with Get Project. - itm_platform_update_task(name?: string, details?: string, task_id: integer, end_date?: string, sprint_id?: string, project_id: integer, start_date?: string, custom_fields?: object[], swimlane_name?: string, parent_task_id?: string, display_in_portfolio?: boolean) — Update selected descriptive, scheduling, hierarchy, or custom fields on an existing ITM Platform project task. Verify important changes with Search Tasks. ## Example prompts - "What can I do in ITM Platform?" - "Show me a summary of my ITM Platform account" ## Links Docs: https://mcp.ai/docs/mcps/itm_platform Website: https://mcp.ai/mcps/itm_platform