1. Conduid
  2. Developer Tools
  3. H2ogpte MCP Server
MCP server · Developer Tools

H2ogpte MCP Server

MCP API server for h2oGPTe

Unclaimed last commit 8 months ago devtools
41Fair

Scored 3 days ago · breakdown

About H2ogpte MCP Server

H2ogpte MCP Server is an MCP server published by h2oai in the Developer Tools category: mCP API server for h2oGPTe. It has been installed 0 times through Conduid.

The repository has 2 stars and 1 forks, with the last commit 8 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx h2ogpte-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about H2ogpte MCP Server

Powered by Claude · Grounded in docs

I know everything about H2ogpte MCP Server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v.0.1.6v0.1.6 · 22 Jul 2026What's Changed fix: survive edge redirects and nullable OpenAPI enums by @achraf-mer in https://github.com/h2oai/h2ogpte-mcp-server/pull/24 Full Changelog**: https://github.com/h2oai/h2ogpte-mcp-server/compare/v.0.1.5...v.0.1.6
v.0.1.5v0.1.5 · 13 Nov 2025What's Changed Fixed [ENDPOINTS_AS_TOOLS=false results in failure](https://github.com/h2oai/h2ogpte-mcp-server/issues/16) Upgrade FastMCP library to 2.13.0.2 in https://github.com/h2oai/h2ogpte-mcp-server/pull/19 Full Changelog**:…
v0.1.4v0.1.4 · 23 Jul 2025What's Changed Add option to specify custom endpoint spec file by @mn-mikke in https://github.com/h2oai/h2ogpte-mcp-server/pull/14 Full Changelog**: https://github.com/h2oai/h2ogpte-mcp-server/compare/v0.1.3...v0.1.4
v0.1.3v0.1.3 · 11 Jun 2025What's Changed Add endpoint filtering by @mn-mikke in https://github.com/h2oai/h2ogpte-mcp-server/pull/10 [h2ogpte_mcp_server-0.1.3.tar.gz](https://github.com/user-attachments/files/20692667/h2ogpte_mcp_server-0.1.3.tar.gz)
v.0.1.2v.0.1.2 · 10 Jun 2025What's Changed Re-implement file endpoints by @mn-mikke in https://github.com/h2oai/h2ogpte-mcp-server/pull/4 Register all endpoints as tools by @mn-mikke in https://github.com/h2oai/h2ogpte-mcp-server/pull/5…

README

H2OGPTe MCP Server

H2OGPTe MCP Server is a Model Context Protocol (MCP) server that prifor the H2OGPTe project. The server is just a local proxy forwarding traffic to REST API endpoints of H2OGPTe executed as commnad.

Installation

From Pypi

pip install h2ogpte-mcp-server

From Github

# Clone git repository
git clone https://github.com/h2oai/h2ogpte-mcp-server.git

# Use the latest release version
git checkout $(git describe --tags)

make setup
make build

# The command will install h2ogpte-mcp-server to the current python environment
make install

Usage

Environment Variables

  • H2OGPTE_API_KEY - (required) H2OGPTe access key. See documentation on how to get the key.
  • H2OGPTE_SERVER_URL - The url of H2OGPTe server. Default value is https://h2ogpte.genai.h2o.ai.
  • H2OGPTE_ALL_ENDPOINTS_AS_TOOLS - A boolean flag, specifing whether all REST API endpoints should be represented as MCP tools. If disabled, GET endpoints will be represented as resources. Default value is true.
  • H2OGPTE_ENDPOINT_SET - A set of REST API endpoints that will be used for MCP tools or resources. The default value is all_without_async_ingest. Possible values:
    • all - All REST API endpoints on the H2OGPTe server
    • all_without_async_ingest - All endpoints without asynchronous ingestion endpoints. These endpoints start and returns a job. E.g.: create_ingest_upload_job
    • basic - A mininal set of endpoints for chatting with collections and ingesting new documents.
    • custom - A set of endpoints defined by the user. If chossen, the H2OGPTE_CUSTOM_ENDPOINT_SET_FILE variable must be set.
  • H2OGPTE_CUSTOM_ENDPOINT_SET_FILE - A path to file with the list of REST API endpoints. Each endpoint name must be an a separate line. The name of the endpoint is the operationId attribute in REST API spec file (e.g.: https://h2ogpte.genai.h2o.ai/api-spec.yaml)
  • H2OGPTE_CUSTOM_ENDPOINT_SPEC_FILE - A path to OpenAPI spec file in YAML format describing REST API of the H2OGPTe server. If not specified, the file is obtained from the H2OGPTe server itself. This environement variable should be used only for debugging purposes.

Example Configuration

An example MCP server configuration for MCP clients. E.g.: Cursor, Claude Desktop

{
  "mcpServers": {
    "h2ogpte-mcp-server": {
      "command": "h2ogpte-mcp-server",
      "env": {
        "H2OGPTE_API_KEY": "sk-...",
        "H2OGPTE_SERVER_URL": "https://h2ogpte.genai.h2o.ai",
        "H2OGPTE_ALL_ENDPOINTS_AS_TOOLS": "true"
      }
    }
  }
}

README mirrored from the source repository 3 days ago. The original is authoritative.

Questions

About H2ogpte MCP Server

How do I install H2ogpte MCP Server?

Run npx h2ogpte-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is H2ogpte MCP Server safe to use with an AI agent?

Its trust score is 41 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is H2ogpte MCP Server still maintained?

Yes — the latest release is v.0.1.6 (22 Jul 2026), and the last commit was 8 months ago. The repository has 2 stars and 0 open issues.