ITM Platform MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ITM Platform MCP Serverfind all projects with budget overruns"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ITM Platform MCP Server
Connect ITM Platform to AI assistants through the Model Context Protocol. The ITM Platform MCP server lets MCP-compatible clients search projects, inspect budgets, summarize portfolio health, create tasks, log risks and issues, and update project details using your ITM Platform permissions.
It works with Claude, VS Code, Cursor, OpenAI Codex, Windsurf, JetBrains AI Assistant, and any other client that supports MCP.
Public docs: developers.itmplatform.com/mcp
npm package: @itm-platform/mcp-server
Hosted MCP URL:
https://api.itmplatform.com/v2/_/mcp/
Quick Start
Hosted connection with OAuth
Use the hosted server if your AI client supports remote MCP servers. There is nothing to install: add the URL, sign in with your ITM Platform account, and approve the requested access.
claude mcp add --scope user --transport http itm-platform https://api.itmplatform.com/v2/_/mcp/For other MCP clients, use this remote URL:
https://api.itmplatform.com/v2/_/mcp/OAuth is the recommended setup for most users because your AI client never sees your ITM Platform password or API key.
After adding the server, open your AI client, type /mcp where slash commands are supported, select itm-platform, and complete the ITM Platform OAuth login when prompted.
Local connection with an API key
Use the npm package if you prefer to run the server locally, work behind a firewall, or need to connect to a self-hosted ITM Platform instance.
npx @itm-platform/mcp-serverYour MCP client must pass these environment variables to the server:
Variable | Value |
|
|
| Your company/account slug |
| Your personal API key from ITM Platform |
Example stdio configuration:
{
"mcpServers": {
"itm-platform": {
"command": "npx",
"args": ["@itm-platform/mcp-server"],
"env": {
"ITM_API_URL": "https://api.itmplatform.com",
"ITM_COMPANY": "{your-account}",
"ITM_API_KEY": "your-api-key"
}
}
}
}To create an API key, log in to ITM Platform, open My Profile, and generate a key from the API Key section.
After configuring the local server, restart your AI client and use /mcp or the client's MCP server list to confirm itm-platform is connected.
Related MCP server: Rytnow MCP Server
What Can an Agent Do?
From simple lookups to fully automated cross-system workflows, MCP unlocks progressively more powerful use cases.
Quick lookup -- Ask a question, get an answer:
"What risks are open across my portfolio?"
Multi-step analysis -- The agent chains multiple tools and synthesizes results:
"Review every project ending this quarter. Flag any with budget overruns, open high-impact risks, or task completion below 60%."
Automated bulk actions -- The agent reads, decides, and writes across projects:
"For every project still in Planning status with a start date in the past, update the status to Execution and create a kick-off checklist task assigned to the project manager."
Scheduled intelligence -- An agent runs on a schedule with no human prompt, pulling overdue tasks every Monday and posting a summary to Slack grouped by project manager.
Cross-system orchestration -- Combine ITM Platform's MCP with other MCP servers (GitHub, Slack, Google Calendar, email). When a developer merges a PR, an agent finds the matching ITM Platform task, marks it complete, and if the project hits 100%, drafts a closure summary and emails the program manager.
The MCP server authenticates as you, calls ITM Platform APIs, and returns only the data your ITM Platform account is allowed to access.
Capabilities
The server exposes 44 MCP tools, 6 resources, and 4 prompt templates.
Read Tools
Tool | What it does |
| Find projects by name, status, type, or date range |
| Retrieve project details with subcomponent counts and optional budget |
| Find services by name, status, type, or date range |
| Retrieve service details with subcomponent counts and optional budget |
| List tasks for a project with pagination |
| Retrieve full detail of a single task |
| Search tasks across all projects by name, status, assignee, kind, or date range |
| Get budget, actuals, revenue, cost, and margin information |
| List purchase orders for a project with pagination |
| List revenue items for a project with pagination |
| List project risks with pagination |
| List project issues with pagination |
| Retrieve full detail of a single risk, including mitigation and contingency plans |
| Retrieve full detail of a single issue, including resolution and impact fields |
| List the progress (follow-up) history for a task |
| Get a task's effort breakdown per team member and per professional category; doubles as the task team list |
| Get project progress report: expected, baseline, and actual curves |
| List activities for a service with pagination |
| List purchase orders for a service with pagination |
| List revenue items for a service with pagination |
| Group and summarize portfolio data |
| Run validated DataMart queries for advanced analysis |
| Find users and team members |
| Retrieve user details |
| Retrieve statuses, types, priorities, and other reference lists |
| Retrieve the account's custom field definitions for projects, tasks, risks, issues, services, activities, purchases, or revenues |
| Retrieve the selectable options of a dropdown custom field |
Write Tools
Tool | What it does |
| Create a project (Waterfall or Kanban); the project starts with the account default status and the creating user as project manager |
| Add a task, milestone (KindId 1), or summary task (KindId 2); ParentId builds Gantt hierarchy on Waterfall projects |
| Update task fields such as status, dates, kind, and parent |
| Report progress on a task (percentage, assessment, notes) with full side effects |
| Update an existing task progress entry |
| Set the estimated (planned) hours of a task per assigned user; accepted effort and billing data are preserved |
| Log a project risk |
| Update risk fields such as status, probability, impact, level, and mitigation or contingency plans |
| Log a project issue with a required issue type and status |
| Update issue fields such as status, type, and resolution |
| Update project fields such as name, status, dates, and priority |
| Create a service; it starts with the account default status |
| Update service fields such as name, status, dates, and priority |
| Add an activity to a service (activities form a flat list) |
| Update activity fields such as status and dates |
| Apply one status to up to 100 tasks of a project in a single call |
| Apply one status to up to 100 activities of a service in a single call |
Write operations confirm the saved state from the ITM Platform REST API. DataMart-backed search results may take up to 60 seconds to reflect recent writes. Validation failures include the actionable message returned by REST instead of only the HTTP status.
When the account defines custom fields, each session is enriched with per-account context: the server lists the DataMart customFields keys actually in use in the MCP initialize instructions and in the query_datamart tool description, so agents can read and filter custom field values without prior discovery.
Resources and Prompts
Resources give AI clients read-only context such as DataMart schemas and project calendars. Prompt templates provide guided workflows for common analysis tasks:
Prompt | What it helps with |
| Summarize health, tasks, risks, issues, and budget for one project |
| Analyze portfolio status, methodology, budget, and delivery patterns |
| Review assignments and workload patterns |
| Assess risk exposure, issues, and budget impact |
Authentication and Permissions
The MCP server uses the same identity and permission model as ITM Platform.
Connection method | Authentication | Best for |
Hosted HTTP | OAuth 2.1 with PKCE | Most users and managed AI clients |
Local stdio | ITM Platform API key | Local execution, firewalled networks, self-hosted environments |
OAuth sessions use scopes:
Scope | Allows |
| Read-only tools such as search, get, list, aggregate, and query |
| Read tools plus create and update tools |
API key sessions use the full permissions of the ITM Platform user who generated the key.
License access:
License | MCP access |
Company Admin | Full read and write access |
Full User | Full read and write access |
Project Manager | Read and write access scoped to managed projects |
Team Member | Blocked |
Your AI assistant does not receive your ITM Platform password or API key. Project data is returned to the AI client you choose, so the AI provider's data-handling policy applies to any data it processes.
Client Setup
Use the public docs for client-specific setup:
For any MCP-compatible client, the two connection values are:
Method | Value |
Remote URL |
|
Local command |
|
After adding either connection, open the client's MCP command or server list. In clients that support slash commands, type /mcp, select itm-platform, and authenticate when prompted.
Self-Hosting
For a local stdio server, configure ITM_API_URL, ITM_COMPANY, and either ITM_API_KEY or ITM_TOKEN.
For an HTTP server with OAuth, configure:
Variable | Description |
| ITM Platform API gateway URL |
| HTTP listen port |
| OAuth authorization server URL used for token exchange |
| Public OAuth URL advertised to AI clients |
| Public MCP server URL used as the OAuth audience |
| Optional Pino log level: |
| Enables server-side audit logging when set to |
| Optional ITM Platform UI base URL (e.g. |
When deployed behind a reverse proxy, ITM_AUTH_URL can point to a server-to-server address while ITM_AUTH_PUBLIC_URL must be reachable by AI clients.
Development
Requirements:
Node.js 20 or later
npm
Install dependencies, run tests, and build:
npm install
npm test
npm run buildRun the HTTP development server:
cp .env.sample .env
npm run devThe package entry point is dist/server.js; the npm executable is mcp-server.
Troubleshooting
If tools do not appear in your AI client, confirm that the server configuration is in the correct file for that client, restart the client, and check that npx @itm-platform/mcp-server runs successfully for local setups.
If authentication fails, regenerate your API key or reconnect the OAuth server so your client receives a fresh token.
OAuth sessions automatically retry once on a downstream 401 by re-exchanging the OAuth bearer token for a fresh session token. This handles cases where the session token is invalidated externally (e.g. by a concurrent browser login). If 401 errors persist, the OAuth bearer token itself has likely expired and the AI client needs to re-authenticate.
If a write succeeds but a later search shows old data, wait up to 60 seconds. Writes are confirmed from the REST API immediately, while DataMart search indexes update asynchronously.
More Help
MCP docs: modelcontextprotocol.io
ITM Platform help: helpcenter.itmplatform.com
ITM Platform developer docs: developers.itmplatform.com
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables AI assistants to manage projects through OpenProject's API, providing complete project management capabilities including work packages, tasks, and team collaboration features.Last updated
- Flicense-quality-maintenanceEnables AI assistants to interact with Rytnow project management platform, supporting task management, time tracking, plan creation, and team collaboration through natural language commands.Last updated
- Flicense-qualityDmaintenanceEnables AI assistants to interact with Implem.Pleasanter project management systems, supporting issue management, advanced search, analytics, bulk operations, and team productivity insights through natural language.Last updated7
- Flicense-qualityBmaintenanceEnables AI assistants to interact with OpenProject installations for comprehensive project management, including creating projects and work packages, managing users and assignments, creating dependencies, and generating Gantt charts through natural language commands.Last updated13
Related MCP Connectors
Manage projects, tasks, time tracking, and team collaboration through natural language.
Connect AI assistants to Stellary projects, boards, documents, and governed agent workflows.
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/itmplatform/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server