Skip to main content
Model Context Protocol

NOVTRIQ MCP Server

Connect AI assistants directly to NOVTRIQ engineering tools. Run calculations, check compliance, and generate reports from any MCP-compatible client.

What is MCP?

The Model Context Protocol (MCP) is an open standard developed by Anthropic that lets AI models call external tools and services as callable functions — without custom integrations. NOVTRIQ's MCP server exposes the full engineering tool suite, so your AI assistant can directly invoke calculations, compliance checks, and design tools mid-conversation. No copy-pasting results. No context switching.

Open Standard JSON-RPC 2.0 Streaming Support Tool Discovery

Available Tools via MCP

Eight engineering functions are exposed as MCP tools. Every tool returns structured JSON with results, confidence scores, cited references, and actionable recommendations.

calculate_pue

Power Usage Effectiveness for data centres & facilities

check_epbd_compliance

EU Energy Performance of Buildings Directive assessment

assess_nis2_readiness

NIS2 cybersecurity directive readiness scoring

estimate_thermal_load

Cooling and thermal load estimation for IT infrastructure

check_uae_grid

UAE grid compliance and connection feasibility check

calculate_building_carbon

Embodied and operational carbon footprint calculation

design_eurocode_beam

Structural beam design to Eurocode 2/3 standards

generate_tdd_scope

Technical Due Diligence scope and report generator

Quick Start

Add NOVTRIQ to your MCP client configuration file. The server uses HTTP transport with Server-Sent Events for streaming responses.

mcp-config.json
{
  "mcpServers": {
    "novtriq": {
      "transport": "http",
      "url": "https://mcp.novtriq.tech/v1",
      "headers": {
        "X-NOVTRIQ-Key": "nvq_your_api_key_here"
      },
      "capabilities": {
        "tools": true
      }
    }
  }
}

For Claude Desktop, place this config in claude_desktop_config.json. For Cursor, use the .cursor/mcp.json project file.

Compatible Clients

NOVTRIQ MCP works with any client that implements the Model Context Protocol specification.

Claude Desktop

Anthropic

Cursor

AI Code Editor

Continue.dev

VS Code / JetBrains

Any MCP Client

Protocol v1.0+

Authentication

The MCP server requires a valid NOVTRIQ API key. Keys are scoped by plan and sent as an HTTP header on every request.

Header-based authentication

Pass your key in the X-NOVTRIQ-Key header on every request. Never expose keys in client-side code.

Required plan

MCP access requires a Developer or Enterprise API key. Free-tier keys are limited to the REST API only.

Developer or Enterprise plan required

Endpoint

https://mcp.novtriq.tech/v1 — HTTP transport, SSE streaming, JSON-RPC 2.0

Ready to connect your AI assistant?

Get an API key and start calling NOVTRIQ engineering tools from Claude, Cursor, or any MCP client.

Get API Key View API Docs