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
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
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 47,000+ AI builders

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

Advertise here

Summary

Makes predictions on tabular data using the TabH2O foundation model API. Supports classification, regression (including timeseries forecasting), clustering, and missing value imputation. Send data as JSON or CSV, get results back.

Install to Claude Code

/plugin install tabh2o-predict@tabh2o

Run in Claude Code. Add the marketplace first with /plugin marketplace add h2oai/tabh2o if you haven't already.

README.md

<p align="center"> <a href="https://tabh2o.h2oai.com"> <img src="https://tabh2o-public.cdn.h2oai.com/assets/logos/tabh2o-80.png" alt="TabH2O" height="64" /> </a> </p>

<h1 align="center">TabH2O</h1>

<p align="center"> A foundation model for tabular data. One API covers classification, regression, time-series forecasting, clustering, missing-value imputation, and anomaly detection. No fitting step on your side. </p>

<p align="center"> <a href="https://tabh2o.h2oai.com">Website</a> · <a href="https://tabh2o.h2oai.com/docs">API Docs</a> · <a href="https://tabh2o.h2oai.com/playground">Playground</a> · <a href="https://h2o.ai/blog/2026/introducing-tabh2o/">Blog</a> </p>

---

This is the public companion repo for TabH2O. You will find here:

  • The agent skill spec (agentic/skills/tabh2o/SKILL.md) for Claude Code, pi, and similar harnesses
  • A Claude Code plugins marketplace at the repo root (.claude-plugin/marketplace.json)
  • The Excel and Google Sheets integrations (integrations/)
  • Runnable curl and Python examples (examples/)
  • Links to the hosted service, the full docs, the blog post, and a Kaggle notebook

Issues and pull requests are welcome.

What it does

TabH2O is a foundation model trained on millions of synthetic datasets. You give it a small labeled training set and an unlabeled test set; it returns predictions a few seconds later.

| Task | Endpoint | Example | |---|---|---| | classification | /api/v1/predict | Will this customer churn? | | regression | /api/v1/predict | What price will this house sell for? | | Timeseries forecasting | /api/v1/forecast | What will sales look like next week? | | imputation (paid plans) | /api/v1/predict | Fill in the missing cells in this table. | | clustering (paid plans) | /api/v1/explore | Which customers behave alike? | | anomaly_detection (paid plans) | /api/v1/explore | Which of these transactions look suspicious? |

Classification and regression requests can additionally return global feature importance scores (Integrated Gradients) by setting feature_importance: true — see the skill spec for details.

The blog post explains the why and the how.

Quickstart

1. Get a free API key at <https://tabh2o.h2oai.com>. 2. Send a request:

   export TABH2O_API_KEY=<your-key>

   curl -s -X POST https://tabh2o.h2oai.com/api/v1/predict \
     -H "Authorization: Bearer $TABH2O_API_KEY" \
     -H "Content-Type: application/json" \
     -d '{
       "train": {
         "data": [[25,50000,1,"Yes"],[30,60000,3,"No"],[22,45000,0,"Yes"],[35,70000,8,"No"],[28,55000,2,"Yes"],[40,80000,10,"No"]],
         "columns": ["age","income","experience","purchased"]
       },
       "test": {
         "data": [[27,52000,2],[38,75000,7]],
         "columns": ["age","income","experience"]
       },
       "target_column": "purchased",
       "task": "classification"
     }'

3. More examples are in examples/. The full reference is at tabh2o.h2oai.com/docs.

Examples and integrations

A community notebook walks through the Titanic dataset end to end: TabH2O solves Titanic, no training needed on Kaggle.

In this repo:

Claude Code marketplace

This repo doubles as a Claude Code plugins marketplace. Install it once, then pull in any TabH2O skill or plugin from inside Claude Code:

/plugin marketplace add h2oai/tabh2o
/plugin install tabh2o@tabh2o

The same skill is also usable standalone in any harness that reads the agentskills.io format — the marketplace is just one delivery channel.

Free tier

| Limit | Value | |---|---| | Requests per minute | 2 | | Requests per day | 20 | | Requests per month | 500 | | Tasks | Classification, regression | | Max rows per request | 100,000 | | Max columns | 100 | | Max payload | 50 MB |

For higher limits contact us.

Privacy

Data is processed in memory and discarded after the response. Nothing is stored, logged, cached, or used for training. Column names and category labels can be replaced with arbitrary identifiers (c1, c2, ...) without changing the predictions. Details in agentic/skills/tabh2o/SKILL.md.

Contributing

Issues and pull requests on the public assets in this repo are welcome. See CONTRIBUTING.md.

License

Apache 2.0. See LICENSE.

Related plugins

Browse all →