ITM Platform MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with ITM Platform MCP or direct API to manage projects, review tasks, analyze portfolio data, and track risks through natural language.

ITM Platform logoITM Platform
Api Key

ITM Platform is a project and portfolio management platform for tasks, services, financials, risks, resources, and DataMart analytics. Use it to plan, track, and analyze work across portfolios with one connected source of truth.

10 Tools

Try ITM Platform now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
ITM Platform
Try asking
TOOLS

Supported Tools

Every ITM Platform action and event your agent gets out of the box.

Aggregate DataMart Components

Run a bounded read-only DataMart aggregation over project and service records for portfolio analytics.

Create Project

Create an ITM Platform project with its schedule and optional account-specific classification IDs.

Create Task

Create a task in an ITM Platform project using account-defined type, priority, and status names.

Get Project

Return the full current details of one project by its ITM Platform project ID.

List Reference Data

List account-defined project or task statuses, priorities, or types needed to form valid project and task mutations.

Search DataMart Components

Search the read-only DataMart for project or service analytics records and return one offset-paginated page.

Search Projects

Search projects by account-specific filters and return one page of project summaries with a continuation cursor.

Search Tasks

Search tasks across accessible projects and return one page of task summaries with a continuation cursor.

Update Project

Update selected fields of an existing ITM Platform project and return the provider result.

Update Task

Update selected descriptive, scheduling, hierarchy, or custom fields on an existing ITM Platform project task.

SETUP GUIDE

Connect ITM Platform MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for ITM Platform
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'List active ITM Platform projects and summarize overdue tasks by project'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect ITM Platform API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute ITM Platform Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'List active ITM Platform projects and summarize overdue tasks by project'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute ITM Platform actions with your Agent

Why Use Composio?

AI Native ITM Platform Integration

  • Supports both ITM Platform MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your ITM Platform project, portfolio, task, financial, risk, and resource data

Managed Auth

  • Secure API key handling so your agents don't need hard-coded ITM Platform credentials
  • Central place to manage, scope, and revoke ITM Platform access
  • Per user and per environment credentials for safer project and portfolio automation

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf
  • Clear schemas help agents understand ITM Platform objects like projects, tasks, risks, resources, and portfolio analytics

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access ITM Platform
  • Scoped, least privilege access to ITM Platform resources
  • Full audit trail of agent actions to support review, governance, and compliance
FAQ

Frequently asked questions

Yes, ITM Platform requires you to configure your own API key. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with ITM Platform.It takes 30 seconds.

Managed auth, hosted MCP servers, and every ITM Platform tool your agent needs.Free to start.

Start building