Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Highs Mcp

    MCP tool to solve optimization problems using HiGHS

    12 stars
    TypeScript
    Updated Aug 13, 2025

    Table of Contents

    • Overview
    • Requirements
    • Installation
    • Usage
    • As an MCP Server
    • Integration with Claude
    • Integration with Other MCP Clients
    • Tool API
    • Input Schema
    • Output Schema
    • Notes on Quadratic Programming (QP)
    • Use Cases
    • 1. Production Planning
    • 2. Transportation/Logistics
    • 3. Portfolio Optimization
    • 4. Portfolio Optimization with Risk (Quadratic Programming)
    • 5. Resource Allocation
    • 5. Large Sparse Problems
    • 6. Enhanced Solver Options
    • Features
    • Development
    • Building
    • Testing
    • Type Checking
    • Contributing
    • License
    • Related Projects

    Table of Contents

    • Overview
    • Requirements
    • Installation
    • Usage
    • As an MCP Server
    • Integration with Claude
    • Integration with Other MCP Clients
    • Tool API
    • Input Schema
    • Output Schema
    • Notes on Quadratic Programming (QP)
    • Use Cases
    • 1. Production Planning
    • 2. Transportation/Logistics
    • 3. Portfolio Optimization
    • 4. Portfolio Optimization with Risk (Quadratic Programming)
    • 5. Resource Allocation
    • 5. Large Sparse Problems
    • 6. Enhanced Solver Options
    • Features
    • Development
    • Building
    • Testing
    • Type Checking
    • Contributing
    • License
    • Related Projects

    Documentation

    HiGHS MCP Server

    A Model Context Protocol (MCP) server that provides linear programming (LP) and mixed-integer programming (MIP) optimization capabilities using the HiGHS solver.

    Overview

    This MCP server exposes the HiGHS optimization solver through a standardized interface, allowing AI assistants and other MCP clients to solve complex optimization problems including:

    • Linear Programming (LP) problems
    • Mixed-Integer Programming (MIP) problems
    • Quadratic Programming (QP) problems for convex objectives
    • Binary and integer variable constraints
    • Multi-objective optimization

    Requirements

    • Node.js >= 16.0.0

    Installation

    bash
    npm install highs-mcp

    Or clone and build from source:

    bash
    git clone https://github.com/wspringer/highs-mcp.git
    cd highs-mcp
    npm install
    npm run build

    Usage

    As an MCP Server

    The server can be run directly:

    bash
    npx highs-mcp

    Or if built from source:

    bash
    npm start

    Integration with Claude

    To use this tool with Claude, add it to your Claude configuration file:

    macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

    Windows: %APPDATA%\Claude\claude_desktop_config.json

    Linux: ~/.config/Claude/claude_desktop_config.json

    json
    {
      "mcpServers": {
        "highs": {
          "command": "npx",
          "args": ["highs-mcp"]
        }
      }
    }

    After adding the configuration, restart Claude to load the HiGHS optimization tool.

    Integration with Other MCP Clients

    The HiGHS MCP server is compatible with any MCP client. Some popular options include:

    • **Claude Desktop**: Anthropic's AI assistant with native MCP support
    • **MCP CLI**: Command-line interface for testing MCP servers
    • **MCP Inspector**: Web-based tool for debugging MCP servers
    • Custom Applications: Any application using the MCP SDK

    Tool API

    The server provides a single tool: optimize-mip-lp-tool

    Input Schema

    typescript
    {
      problem: {
        sense: 'minimize' | 'maximize',
        objective: {
          linear?: number[],  // Linear coefficients (optional if quadratic is provided)
          quadratic?: {       // Quadratic terms for convex QP (optional)
            // Dense format:
            dense?: number[][]  // Symmetric positive semidefinite matrix Q
            
            // OR Sparse format:
            sparse?: {
              rows: number[],     // Row indices (0-indexed)
              cols: number[],     // Column indices (0-indexed)
              values: number[],   // Values of Q matrix
              shape: [number, number]  // [num_variables, num_variables]
            }
          }
        },
        variables: Array,
        constraints: {
          // Dense format (for small problems):
          dense?: number[][],  // 2D array where each row is a constraint
          
          // OR Sparse format (for large problems with many zeros):
          sparse?: {
            rows: number[],    // Row indices of non-zero coefficients (0-indexed)
            cols: number[],    // Column indices of non-zero coefficients (0-indexed)
            values: number[],  // Non-zero coefficient values
            shape: [number, number]  // [num_constraints, num_variables]
          },
          
          sense: Array=' | '='>,  // Constraint directions
          rhs: number[]  // Right-hand side values
        }
      },
      options?: {
        // Solver Control
        time_limit?: number,              // Time limit in seconds
        presolve?: 'off' | 'choose' | 'on',
        solver?: 'simplex' | 'choose' | 'ipm' | 'pdlp',
        parallel?: 'off' | 'choose' | 'on',
        threads?: number,                 // Number of threads (0=automatic)
        random_seed?: number,             // Random seed for reproducibility
        
        // Tolerances
        primal_feasibility_tolerance?: number,  // Default: 1e-7
        dual_feasibility_tolerance?: number,    // Default: 1e-7
        ipm_optimality_tolerance?: number,      // Default: 1e-8
        infinite_cost?: number,                 // Default: 1e20
        infinite_bound?: number,                // Default: 1e20
        
        // Simplex Options
        simplex_strategy?: number,              // 0-4: algorithm strategy
        simplex_scale_strategy?: number,        // 0-5: scaling strategy
        simplex_dual_edge_weight_strategy?: number,  // -1 to 2: pricing
        simplex_iteration_limit?: number,       // Max iterations
        
        // MIP Options
        mip_detect_symmetry?: boolean,          // Detect symmetry
        mip_max_nodes?: number,                 // Max branch-and-bound nodes
        mip_rel_gap?: number,                   // Relative gap tolerance
        mip_abs_gap?: number,                   // Absolute gap tolerance
        mip_feasibility_tolerance?: number,     // MIP feasibility tolerance
        
        // Logging
        output_flag?: boolean,                  // Enable solver output
        log_to_console?: boolean,               // Console logging
        highs_debug_level?: number,             // 0-4: debug verbosity
        
        // Algorithm-specific
        ipm_iteration_limit?: number,           // IPM max iterations
        pdlp_scaling?: boolean,                 // PDLP scaling
        pdlp_iteration_limit?: number,          // PDLP max iterations
        
        // File I/O
        write_solution_to_file?: boolean,       // Write solution to file
        solution_file?: string,                 // Solution file path
        write_solution_style?: number           // Solution format style
      }
    }

    Output Schema

    typescript
    {
      status: 'optimal' | 'infeasible' | 'unbounded' | string,
      objective_value: number,
      solution: number[],         // Solution values for each variable
      dual_solution: number[],    // Dual values for constraints
      variable_duals: number[]    // Reduced costs for variables
    }

    Notes on Quadratic Programming (QP)

    • Convex QP only: The quadratic matrix Q must be positive semidefinite
    • Continuous variables only: Integer/binary variables are not supported with quadratic objectives (no MIQP)
    • Format: Objective function is: minimize c^T x + 0.5 x^T Q x
    • Matrix specification: When specifying Q, values should be doubled to account for the 0.5 factor

    Use Cases

    1. Production Planning

    Optimize production schedules to maximize profit while respecting resource constraints:

    javascript
    {
      problem: {
        sense: 'maximize',
        objective: {
          linear: [25, 40]  // Profit per unit
        },
        variables: [
          { name: 'ProductA' },  // Product A (defaults: cont, [0, +∞))
          { name: 'ProductB' }   // Product B (defaults: cont, [0, +∞))
        ],
        constraints: {
          dense: [
            [2, 3],  // Machine hours per unit
            [1, 2]   // Labor hours per unit
          ],
          sense: ['=', '>='],
          rhs: [50, 40, 0, 0, 30, 25]  // Supply, conservation, demand
        }
      }
    }

    3. Portfolio Optimization

    Optimize investment allocation with risk constraints:

    javascript
    {
      problem: {
        sense: 'maximize',
        objective: {
          linear: [0.08, 0.12, 0.10, 0.15]  // Expected returns
        },
        variables: [
          { name: 'Bonds', ub: 0.4 },         // Max 40% in bonds
          { name: 'Stocks', ub: 0.6 },        // Max 60% in stocks
          { name: 'RealEstate', ub: 0.3 },    // Max 30% in real estate
          { name: 'Commodities', ub: 0.2 }    // Max 20% in commodities
          // All default to: cont, lb=0
        ],
        constraints: {
          dense: [
            [1, 1, 1, 1],           // Total allocation = 100%
            [0.02, 0.15, 0.08, 0.20]  // Risk constraint
          ],
          sense: ['=', '= target
          ],
          sense: ['=', '>='],
          rhs: [1, 0.1]  // 100% allocation, min 10% return
        }
      }
    }

    5. Resource Allocation

    Optimize resource allocation across projects with integer constraints:

    javascript
    {
      problem: {
        sense: 'maximize',
        objective: {
          linear: [100, 150, 80]  // Value per project
        },
        variables: [
          { name: 'ProjectA', type: 'bin' },  // Binary: select or not
          { name: 'ProjectB', type: 'bin' },  // Binary: select or not
          { name: 'ProjectC', type: 'bin' }   // Binary: select or not
          // Binary defaults to [0, 1] bounds
        ],
        constraints: {
          dense: [
            [5, 8, 3],   // Resource requirements
            [2, 3, 1]    // Time requirements
          ],
          sense: ['= 2, x2 + x4 >= 3
          sense: ['>=', '>='],
          rhs: [2, 3]
        }
      }
    }

    Use sparse format when:

    • Problem has > 1000 variables or constraints
    • Matrix has ='],

    rhs: [1]

    }

    },

    options: {

    // Algorithm Control

    solver: 'simplex',

    simplex_strategy: 1, // Dual simplex

    simplex_dual_edge_weight_strategy: 1, // Devex pricing

    simplex_scale_strategy: 2, // Equilibration scaling

    // Performance Tuning

    parallel: 'on',

    threads: 4,

    simplex_iteration_limit: 10000,

    // Tolerances

    primal_feasibility_tolerance: 1e-8,

    dual_feasibility_tolerance: 1e-8,

    // Debugging

    output_flag: true,

    log_to_console: true,

    highs_debug_level: 1,

    // MIP Control (for integer problems)

    mip_detect_symmetry: true,

    mip_max_nodes: 5000,

    mip_rel_gap: 0.001

    }

    }

    code
    **Key Option Categories:**
    
    - **Solver Control**: Algorithm selection, parallelization, time limits
    - **Tolerances**: Precision control for feasibility and optimality
    - **Simplex Options**: Strategy, scaling, pricing, iteration limits
    - **MIP Options**: Symmetry detection, node limits, gap tolerances
    - **Logging**: Output control, debugging levels, file output
    - **Algorithm-specific**: IPM and PDLP specialized options
    
    ## Features
    
    - **High Performance**: Built on the HiGHS solver, one of the fastest open-source optimization solvers
    - **Sparse Matrix Support**: Efficient handling of large-scale problems with sparse constraint matrices
    - **Type Safety**: Full TypeScript support with Zod validation for robust error handling
    - **Compact Variable Format**: Self-contained variable specifications with smart defaults
    - **Flexible Problem Types**: Supports continuous, integer, and binary variables
    - **Multiple Solver Methods**: Choose between simplex, interior point, and other algorithms
    - **Comprehensive Output**: Returns primal solution, dual values, and reduced costs
    
    ## Development
    
    ### Building

    npm run build

    code
    ### Testing

    npm test # Run tests once

    npm run test:watch # Run tests in watch mode

    npm run test:ui # Run tests with UI

    code
    ### Type Checking

    npx tsc --noEmit

    code
    ## Contributing
    
    Contributions are welcome! Please feel free to submit a Pull Request.
    
    ## License
    
    MIT License - Copyright (c) 2024 Wilfred Springer
    
    ## Related Projects
    
    - [HiGHS](https://highs.dev/) - The underlying optimization solver
    - [Model Context Protocol](https://modelcontextprotocol.io/) - The protocol specification
    - [MCP SDK](https://github.com/modelcontextprotocol/sdk) - SDK for building MCP servers

    Similar MCP

    Based on tags & features

    • ME

      Metmuseum Mcp

      TypeScript·
      14
    • MC

      Mcp Ipfs

      TypeScript·
      11
    • LI

      Liveblocks Mcp Server

      TypeScript·
      11
    • MC

      Mcp Wave

      TypeScript00

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • ME

      Metmuseum Mcp

      TypeScript·
      14
    • MC

      Mcp Ipfs

      TypeScript·
      11
    • LI

      Liveblocks Mcp Server

      TypeScript·
      11
    • MC

      Mcp Wave

      TypeScript00

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k