Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables natural language interactions for creating, querying, updating, and deleting job plans in IBM Maximo.

README.md

Maximo Job Plan Management via MCP

This project uses the Model Context Protocol (MCP) to interact with IBM Maximo for job plan management.

Overview

The Maximo Job Plan MCP Server provides a seamless interface for AI assistants to interact with IBM Maximo's job plan management system. It enables natural language interactions for creating, querying, updating, and deleting job plans.

Features

  • Import Job Plans: Bulk import job plans from CSV files
  • List Job Plans: Query and filter job plans with OSLC queries
  • Get Job Plan Details: Retrieve detailed information about specific job plans
  • Delete Job Plans: Remove job plans from the system
  • Natural Language Interface: Use conversational commands through AI assistants

Available MCP Tools

The maximo-jobplan MCP server provides 4 tools for managing job plans:

1. import_jobplans

Import job plans from CSV data into Maximo.

Example usage: `` "Import job plans from jobplanMaximo.csv" ``

CSV Format: ``csv JPNUM,DESCRIPTION,JPDURATION,STATUS,JOBTYPE,PLUSCJPREVNUM HVAC-PM-001,Quarterly HVAC System Inspection,4.0,ACTIVE,PM,0 ``

2. list_jobplans

List all job plans from Maximo with optional filtering.

Example usage: `` "List all job plans" "Show me HVAC job plans" ``

3. get_jobplan

Get detailed information about a specific job plan.

Example usage: `` "Get details of job plan HVAC-PM-001" "Show me the BREAKINSP job plan" ``

4. delete_jobplan

Delete a job plan by number.

Example usage: `` "Delete job plan TEST-001" ``

Installation

Prerequisites

  • Node.js 18 or higher
  • npm or yarn
  • Access to IBM Maximo instance
  • Maximo API key

Setup Steps

  1. Clone the repository
   git clone <repository-url>
   cd maximo-jobplan-mcp
  1. Install dependencies
   npm install
  1. Build the project
   npm run build
  1. Configure environment variables

Set the following environment variables:

  • MAXIMO_BASE_URL: Your Maximo instance URL (e.g., https://your-maximo-instance.com)
  • MAXIMO_API_KEY: Your Maximo API key
  1. Configure MCP Client

For Bob/Claude Desktop, add to your MCP settings: ``json { "mcpServers": { "maximo-jobplan": { "command": "node", "args": ["C:/path/to/maximo-jobplan-server/build/index.js"], "env": { "MAXIMO_BASE_URL": "https://your-maximo-instance.com", "MAXIMO_API_KEY": "your-api-key-here" } } } } ``

Project Structure

maximo-jobplan-mcp/
├── src/
│   └── index.ts          # Main MCP server implementation
├── build/                # Compiled JavaScript output
├── docs/                 # Documentation files
│   ├── MCP_SETUP_GUIDE.md
│   ├── QUICK_START.md
│   └── README_MAXIMO_CONNECTION.md
├── examples/
│   └── jobplanMaximo.csv # Sample job plans
├── package.json
├── tsconfig.json
├── .gitignore
└── README.md

Usage Examples

Using with AI Assistants

Simply use natural language commands:

  • "List all job plans in Maximo"
  • "Show me details of HVAC-PM-001"
  • "Import the job plans from the CSV file"
  • "Get all PUMP job plans"
  • "Delete job plan TEST-001"

Programmatic Usage

// The MCP server handles all interactions through the protocol
// No direct API calls needed when using with MCP clients

Configuration

Maximo Connection

The server connects to Maximo using:

  • Base URL: Configured via MAXIMO_BASE_URL environment variable
  • Authentication: API key via MAXIMO_API_KEY environment variable
  • API Endpoint: /maximo/api/os/MXAPIJOBPLAN

CSV Import Format

Job plans CSV must include these columns:

  • JPNUM: Job plan number (max 12 characters)
  • DESCRIPTION: Job plan description
  • JPDURATION: Duration in hours
  • STATUS: Status (e.g., ACTIVE, INACTIVE)
  • JOBTYPE: Job type (e.g., PM, CM)
  • PLUSCJPREVNUM: Revision number

Development

Build Commands

# Build the project
npm run build

# Watch mode for development
npm run watch

# Prepare for distribution
npm run prepare

Testing

Test the MCP server connection: ``bash node build/index.js ``

Troubleshooting

Connection Issues

  1. Verify environment variables are set correctly
  2. Check Maximo URL is accessible
  3. Validate API key has proper permissions
  4. Review SSL certificates (development mode disables SSL verification)

Import Failures

  1. Check CSV format matches required columns
  2. Verify job plan numbers are 12 characters or less
  3. Ensure required fields are populated
  4. Check for duplicate job plan numbers

Security Considerations

⚠️ Important Security Notes:

  1. SSL Verification: Currently disabled for development. Enable for production:
   httpsAgent: new https.Agent({
     rejectUnauthorized: true  // Enable SSL verification
   })
  1. API Key Storage: Store API keys securely using:
  • Environment variables
  • Secret management systems
  • Encrypted configuration files
  1. Access Control: Ensure only authorized users can access the MCP server

License

MIT License - See LICENSE file for details

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.