Back to Discover

AskMarcel-MCP

connector

askmarcel

HVAC docs for AI agents: search, diagnostics, error codes, guided PAC, 126 brands, 905 models.

View on GitHub
0 starsSynced Aug 17, 2026

Install to Claude Code

/plugin marketplace add askmarcel/AskMarcel-MCP

README

AskMarcel

AskMarcel — HVAC Technical Knowledge MCP Server

Manufacturer-sourced HVAC technical documentation for AI agents: search, diagnostics, error codes, procedures and product sheets across 126 brands and 905 models.

MCP Registry smithery badge Transport Auth License

AskMarcel is a remote, hosted MCP server (Streamable HTTP). There is nothing to install or self-host — point your MCP client at the endpoint and authenticate. The server connects AI agents to real manufacturer documentation so answers cite the exact manual and page number instead of hallucinating.


Why AskMarcel

General-purpose LLMs guess at HVAC specifics — refrigerant charge, error-code meanings, wiring, fault trees. AskMarcel grounds every response in indexed manufacturer PDFs and returns the source page, so a field technician or an agent can trust and verify the answer. See HVAC-Bench for measured accuracy vs. raw LLM output.

  • 126 brands · 905 models · 400,000+ error codes indexed
  • Deterministic error-code lookup (not a guess)
  • Sourced one-shot lookups (diagnose) and multi-turn guided troubleshooting for air-to-water heat pumps (diagnose_guided)
  • FR / EN, focused on the European HVAC/RACH market

Tools

The server exposes 7 tools. Full reference in docs/tools.md.

ToolWhat it does
search_technical_docsSemantic search over technical documentation (≤10 excerpts). Filter by brand, model, error_code.
get_procedureRetrieve a full procedure by chunk_id.
get_error_codeDeterministic lookup by brand + error_code (optional model).
get_product_sheetProduct sheet: specs, composition, frequent error codes, by brand + model.
get_pdf_page_snapshotSigned, 5-minute URL to a specific PDF page (document_id + page).
diagnoseOne-shot sourced lookup from a symptom or error code (excerpt + steps + citation).
diagnose_guidedMulti-turn guided troubleshooting for air-to-water heat pumps (server-computed diagnostic state).

Quick start

1. Get an API key

Create a free key at https://app.askmarcel.app/developers (250 calls/month on the Developer tier). The server also supports OAuth 2.0 (PKCE + Dynamic Client Registration) for clients that discover auth automatically.

2. Connect your MCP client

Ready-to-use configs live in examples/. The general form for any Streamable HTTP MCP client:

{
  "mcpServers": {
    "askmarcel": {
      "type": "streamable-http",
      "url": "https://mcp.askmarcel.app",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Claude Desktop / Cursor / VS Code: see the matching file in examples/. Replace YOUR_API_KEY with your key.

3. Ask a question

Once connected, prompt naturally, e.g.:

"Daikin Altherma showing error U4 — what does it mean and how do I clear it?"

The agent calls get_error_code / diagnose and returns the cause, the fix steps, and the source manual page.

MCP vs Chat API

AskMarcel exposes two separate integration surfaces — do not mix their protocols:

SurfaceEndpointProtocolUse case
MCP server (this repo)https://mcp.askmarcel.appJSON-RPC Streamable HTTP (tools/call)Connect Claude, Cursor, VS Code, or any MCP client to HVAC tools
Chat API (web / mobile / extension)https://app.askmarcel.app/api/chatAI SDK v5 SSE (UIMessageStream)Full conversational UI with streaming, tools, and document blocks

The MCP server does not use the AI SDK chat stream (text-delta, data-* parts). If you build a custom agent with the Vercel AI SDK, use MCP tools via JSON-RPC — not the web chat endpoint.

Authentication

Two supported methods (details in docs/authentication.md):

  1. API key (Bearer): Authorization: Bearer YOUR_API_KEY
  2. OAuth 2.0: discovery via https://mcp.askmarcel.app/.well-known/oauth-protected-resource

Claude Skills

The skills/ folder contains ready-to-use Agent Skills that wrap these tools into HVAC workflows:

REST API SDK

For custom agents that call the REST API directly (not MCP), use the npm package @askmarcel/sdk — includes guidedTurn() for POST /v1/diagnostic/turn.

Links

License

Code and content in this repository (documentation, examples, skills) are released under the MIT License. The AskMarcel hosted service and its underlying data are proprietary and governed by the AskMarcel terms.


🇫🇷 En français

AskMarcel est un serveur MCP distant et hébergé (Streamable HTTP) qui connecte les agents IA à la documentation technique HVAC/RACH sourcée constructeur. Rien à installer : on pointe son client MCP sur l'endpoint et on s'authentifie. Chaque réponse cite le manuel et la page exacte plutôt que d'halluciner.

  • Endpoint : https://mcp.askmarcel.app
  • Nom registre : io.github.askmarcel/mcphvac
  • Doc & clé API : https://app.askmarcel.app/developers
  • Tier Developer gratuit : 250 appels / mois
  • Couverture : 126 marques · 905 modèles · 400 000+ codes erreur indexés

7 outils : search_technical_docs (recherche), get_procedure (procédure complète), get_error_code (lookup déterministe marque + code), get_product_sheet (fiche produit), get_pdf_page_snapshot (URL signée d'une page PDF), diagnose (lookup sourcé en un aller-retour), diagnose_guided (dépannage guidé multi-tours PAC Air/Eau).

Skills : lookup code erreur, diagnostic one-shot, diagnostic guidé PAC — voir skills/.

SDK REST (npm) : @askmarcel/sdk pour intégrer l'API REST (guidedTurn()POST /v1/diagnostic/turn).

Connexion rapide : créez une clé sur https://app.askmarcel.app/developers, puis utilisez une des configs du dossier examples/ (Claude Desktop, Cursor, VS Code). Remplacez YOUR_API_KEY par votre clé.

MCP vs Chat API : ce dépôt documente le serveur MCP (JSON-RPC sur mcp.askmarcel.app). Le chat web/mobile utilise une API distincte (SSE AI SDK v5 sur /api/chat) — les deux protocoles ne sont pas interchangeables.

Détails des outils : docs/tools.md · Authentification : docs/authentication.md.

Rendered live from askmarcel/AskMarcel-MCP's GitHub README — not stored, always reflects the source repo.

1 Install Method

NameDescriptionCategorySource
streamable-http remoteHosted streamable-http endpointmcp-serverhttps://mcp.askmarcel.app

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.