markusvankempen

๐Ÿญ Maximo MCP Server

Community markusvankempen
Updated

maximo-mcp-ai-integration-options

๐Ÿญ Maximo MCP Server

AI-Powered Development for IBM Maximo

Node.jsMCPMaximoLicenseVersion

Transform your Maximo development workflow with AI-driven schema discovery, live data querying, and intelligent code generation.

Author: Markus van Kempen Email: [email protected] | [email protected] Date: 3 February 2026

Getting Started โ€ข Documentation โ€ข Live Demo โ€ข Use Cases

๐ŸŽฏ What is This?

The Maximo MCP Server is a Model Context Protocol server that connects AI assistants (like Antigravity, Cursor, or VS Code Copilot) directly to your IBM Maximo environment. Instead of manually copying API documentation, the AI can:

Capability Description
๐Ÿ” Discover APIs Find available Object Structures (MXWO, MXASSET, etc.)
๐Ÿ“‹ Inspect Schemas Get exact field names, types, and descriptions
๐Ÿ“Š Query Live Data Execute OSLC REST queries and see real results
๐ŸŽจ Generate UI Create Carbon Design System tables and dashboards
โœ… Validate Instantly Test queries before generating final code

๐Ÿ“š Documentation

Core Guides

Document Description
๐Ÿ“– Maximo MCP Server Guide Complete setup, configuration, and tool reference
๐Ÿ”Œ Maximo API Interaction Guide OSLC query syntax, code generation patterns, troubleshooting
๐ŸŽฌ Asset Manager Case Study Step-by-step walkthrough of building a complete app

French Translations

Document Description
๐Ÿ“– Guide du Serveur MCP Maximo Version franรงaise du guide complet
๐Ÿ”Œ Guide d'Interaction API Maximo Version franรงaise du guide API

Word Documents

All guides are also available in .docx format in the docs/ folder for offline reading and sharing.

โšก Quick Start

Prerequisites

  • Node.js v18 or higher
  • Maximo API Key with read access
  • AI IDE with MCP support (Antigravity, Cursor, VS Code + Continue)

Installation

Installation

Method 1: Run directly with npx (Recommended)

npx maximo-mcp-server

Method 2: Clone from Source

# Clone the repository
git clone https://github.com/markusvankempen/maximo-mcp-ai-integration-options.git
cd maximo-mcp-ai-integration-options

# Install dependencies
npm install

# Set up environment variables
cp .env.example .env
# Edit .env with your Maximo credentials

Environment Configuration

Edit the .env file with your Maximo credentials:

# .env (never commit this file!)
MAXIMO_URL=https://your-maximo-host.com/maximo/api
MAXIMO_HOST=https://your-maximo-host.com
MAXIMO_API_KEY=your-api-key-here
MAXIMO_OPENAPI_PATH=./maximo_openapi.json
PORT=3002

Download the OpenAPI Schema (Recommended)

The OpenAPI schema file enables offline schema lookups for faster AI responses:

# Download from your Maximo instance
curl -X GET "https://your-maximo-host.com/maximo/oslc/oas/api" \
     -H "apikey:your-api-key-here" \
     -o maximo_openapi.json

Alternatively, download via Swagger UI at: https://your-host/maximo/oslc/oas/api.html

Note: This file is ~12MB and contains all Object Structure definitions for your Maximo instance.

IDE Configuration

Copy and configure the MCP settings for your IDE:

For Cursor:

cp config/mcp_config.json.example ~/.cursor/mcp.json

For Antigravity:

mkdir -p .gemini && cp config/mcp_config.json.example .gemini/settings.json

Edit the config file and update the path to maximo-mcp-server.js:

{
  "mcpServers": {
    "maximo": {
      "command": "node",
      "args": ["/absolute/path/to/maximo-mcp-server.js"],
      "env": {
        "MAXIMO_URL": "https://your-maximo-host/maximo/api",
        "MAXIMO_API_KEY": "your-api-key-here"
      }
    }
  }
}

Verify Connection

In your AI IDE, ask:

"Is the Maximo MCP server connected?"

The AI will call get_instance_details and confirm connectivity.

๐ŸŽฌ Live Demo

Asset Manager Application

We built a complete Maximo Asset Manager web application using only natural language prompts and the MCP server.

Asset Manager Dashboard

50 assets loaded with real-time filtering and search

Demo Features
Feature Screenshot
Full Dashboard 50 assets, 4 stat cards, 3 sites
Search Filter Pump Search
Site Filter LAREDO Filter
๐ŸŽฅ Screen Recording

A complete video demonstration is available: assets_demo_recording.webp

Try It Yourself
# Start the local proxy server
node server.js

# Open in browser
open http://localhost:3002/demos/assets.html

๐Ÿ›  Available MCP Tools

The server exposes 6 tools to the AI:

MCP Tools UI

Tool Name Description
list_object_structures List available Maximo Object Structures (APIs)
get_schema_details Get field definitions for an Object Structure
query_maximo Execute OSLC REST queries
render_carbon_table Generate Carbon Design HTML tables
render_carbon_details Generate detail view for a record
get_instance_details Check server connectivity

๐Ÿ’ก Use Cases

1. Generate API Calls

"Get me the last 10 approved work orders from BEDFORD site"

The AI calls get_schema_details(MXWO), understands the fields, and generates:

GET /maximo/api/os/mxwo
    ?oslc.where=status="APPR" and siteid="BEDFORD"
    &oslc.select=wonum,description,status,reportdate
    &oslc.orderBy=-reportdate
    &oslc.pageSize=10
    &lean=1

2. Generate Python Scripts

"Write a Python script to export all Priority 1 work orders to CSV"

import requests
import csv

response = requests.get(
    "https://your-host/maximo/api/os/mxwo",
    params={"oslc.where": "wopriority=1", "lean": 1},
    headers={"apikey": "YOUR_KEY"}
)

with open("priority1_workorders.csv", "w") as f:
    writer = csv.DictWriter(f, fieldnames=["wonum", "description"])
    writer.writeheader()
    writer.writerows(response.json()["member"])

3. Generate SQL Queries

"Write SQL to find overdue work orders"

SELECT wonum, description, status, targcompdate
FROM workorder
WHERE status NOT IN ('COMP', 'CLOSE', 'CAN')
  AND targcompdate < CURRENT_DATE;

4. Build Complete Applications

"Create an HTML dashboard to display assets"

Result: A complete web application with:

  • Dark theme with glassmorphism
  • Search and filter functionality
  • Interactive detail panels
  • Pre-loaded data from Maximo

See the Asset Manager Case Study for the full walkthrough.

๐Ÿ“ Project Structure

Maximo-MCP-EDF/
โ”œโ”€โ”€ maximo-mcp-server.js       # ๐Ÿ”Œ MCP Server implementation
โ”œโ”€โ”€ server.js                  # ๐ŸŒ Local proxy server for CORS
โ”œโ”€โ”€ package.json               # ๐Ÿ“ฆ Dependencies
โ”œโ”€โ”€ README.md                  # This file
โ”œโ”€โ”€ .env.example               # Environment template
โ”œโ”€โ”€ .gitignore                 # Git ignore rules
โ”‚
โ”œโ”€โ”€ docs/                      # ๐Ÿ“š Documentation
โ”‚   โ”œโ”€โ”€ Maximo_MCP_Server_Guide.md         # Complete MCP guide
โ”‚   โ”œโ”€โ”€ Maximo_API_Interaction_Guide.md    # API interaction patterns
โ”‚   โ”œโ”€โ”€ Asset_Manager_App_Case_Study.md    # Build walkthrough
โ”‚   โ”œโ”€โ”€ Maximo_MCP_Server_Guide_FR.md      # French translation
โ”‚   โ””โ”€โ”€ Maximo_API_Interaction_Guide_FR.md # French translation
โ”‚
โ”œโ”€โ”€ demos/                     # ๐ŸŽจ Demo Applications
โ”‚   โ”œโ”€โ”€ assets.html                        # Asset Manager app
โ”‚   โ”œโ”€โ”€ carbon_workorders.html             # Carbon table demo
โ”‚   โ””โ”€โ”€ index.html                         # API visualization demo
โ”‚
โ”œโ”€โ”€ images/                    # ๐Ÿ“ธ Screenshots & Recordings
โ”‚   โ”œโ”€โ”€ assets_demo_recording.webp         # Full demo recording
โ”‚   โ”œโ”€โ”€ assets_loaded.png                  # Dashboard screenshot
โ”‚   โ”œโ”€โ”€ pump_search_results.png            # Search demo
โ”‚   โ””โ”€โ”€ laredo_filtered.png                # Filter demo
โ”‚
โ””โ”€โ”€ config/                    # โš™๏ธ Configuration Templates
    โ””โ”€โ”€ mcp_config.json.example            # MCP config template

๐Ÿ”’ Security Best Practices

Practice Description
๐Ÿ” Local Execution MCP server runs on your machine; API keys never leave your environment
๐Ÿ“– Read-Only Keys Use limited-permission API keys for development
๐Ÿ”’ Environment Variables Never hardcode credentials in config files
๐ŸŒ HTTPS Only Always use encrypted connections to Maximo

๐Ÿค Contributing

Contributions are welcome! Please read our contributing guidelines before submitting PRs.

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

MCP Server ยท Populars

MCP Server ยท New