Back to Discover

groundx-agent-harness

skill

GroundX-Studio

View on GitHub
0 starsMITSynced Aug 8, 2026

Install to Claude Code

/plugin marketplace add GroundX-Studio/groundx-agent-harness

README

GroundX Agent Harness

GroundX Agent Harness gives your AI agent the GroundX context it needs to help with:

  • document ingest, status checks, and search
  • buckets, groups, workflows, APIs, and SDKs
  • schema-first extraction workflows
  • GroundX on-prem planning
  • GroundX product, company, and architecture questions

It is built on the open Agent Skills (SKILL.md) standard. Claude and Codex install it as a one-command plugin. Other skills-capable agents (Cursor, Replit, Gemini, Windsurf, Copilot, and more) install the same skills however that agent supports Agent Skills, which may be an install command or adding this repository's skills/ folder; see your agent's own docs for the exact step. Installing the skills is the main step and is what "Agent Harness" is. Connecting the hosted MCP server (below) is an optional enhancement.

This repository is GroundX Agent Harness. It does not include the internal GroundX Studio Harness skills (Studio-only web UI, publish, slides, and partner-admin production), which are intentionally kept out of this agent harness.

The hosted MCP server is optional. The plugin bundles it, so current Claude Code and Codex plugin installs register it for you — you do not need to add it by hand on those clients. It picks up GROUNDX_API_KEY from your environment if you have set it; otherwise sign in once (below) and your agent stores the credential for you. On other agents, or older plugin runtimes, connect it manually when your agent supports remote MCP:

https://api.groundx.ai/mcp

If you connected GroundX by hand following an earlier version of this guide, remove that connection after installing the plugin — otherwise the same server is attached twice, which shows up as duplicated tools and repeated approval prompts. Run claude mcp list (or codex mcp list) first and remove whichever form you have:

  • A custom connector added in the Claude apps — it is listed with a claude.ai prefix, such as claude.ai GroundX, because it lives on your Claude account rather than in this machine's config. claude mcp remove cannot touch it and will report that no such server exists. Remove or disable it in Settings -> Connectors in the Claude app, or toggle it off for the session under /mcp.

  • A terminal-added server, listed as a bare groundx:

    claude mcp remove groundx
    
  • A Codex server, listed as a bare groundx:

    codex mcp remove groundx
    

A server shown with a plugin: prefix is the one the plugin provides — keep that one.

Requirements

  • A GroundX API key. Sign in or create an account at https://dashboard.groundx.ai, then create or copy an API key.
  • One supported agent (see the client table below).

Wherever you enter your key, use the GroundX sign-in page, an environment variable, or an approved local secret store. Never paste an API key into chat or into a tool argument. Use a regular GroundX user API key unless GroundX has issued you Partner-tier access.

Install the skills first. Then, to let the agent actually reach GroundX, pick either way (you don't need both):

  • The hosted tools (MCP). Connect them once and the agent calls them. Sign in through your agent by OAuth or with your API key in the connection settings. Use this when your agent supports connecting remote tools. Connector tool calls may default to per-tool approval prompts; that is expected, and you may choose Always allow after accepting the broader security tradeoff.
  • The SDK or REST API. Set GROUNDX_API_KEY where your agent runs and it calls GroundX from code. This works with any agent that can run code or make web requests.

Client support:

ClientSkillsHosted MCP tools
Claude DesktopYesYes
Codex DesktopYesYes
Claude CLIYesYes
Codex CLIYesYes
VS CodeYesYes
Everything else (Cursor, Replit, Gemini, Windsurf, Copilot, and more)Yes, installed however your agent supports Agent SkillsIf your agent supports remote MCP

Installation

Claude Desktop

Install the plugin from a marketplace using the Plugins/Cowork surface.

Install the plugin (personal marketplace). Route: Customize -> Plugins -> Personal plugins + -> Add marketplace -> Add from a repository.

  1. Open Customize -> Plugins -> Personal plugins + -> Add marketplace.

  2. Choose Add from a repository.

  3. When prompted for a repository, enter:

    GroundX-Studio/groundx-agent-harness
    
  4. A GitHub account is not required for this repository. If the repository list cannot load, type GroundX-Studio/groundx-agent-harness directly and continue.

  5. Click Sync.

  6. Open the personal directory or GroundX Agent Harness card and click Install.

  7. Run /reload-plugins, or start a new Claude Code session.

Organization distribution (Team/Enterprise admins). Claude organization GitHub sync uses a private or internal marketplace repository. The public repo is not supported as the direct organization marketplace sync target.

  1. Create or choose a private/internal organization marketplace repository.

  2. Vendor/copy this bundle into that repository at:

    plugins/groundx-agent-harness/
    

    The private marketplace repository should include:

    .claude-plugin/marketplace.json
    plugins/groundx-agent-harness/.claude-plugin/marketplace.json
    plugins/groundx-agent-harness/README.md
    plugins/groundx-agent-harness/scripts/
    plugins/groundx-agent-harness/skills/
    
  3. Create the private marketplace root .claude-plugin/marketplace.json with a complete marketplace manifest. Use your organization for the root owner, keep the bundle plugin entry's description, strict, and skills fields, and change only the plugin source to this repo-relative path. You may replace author with your approved organization publisher value:

    {
      "name": "groundx-agent-harness-marketplace",
      "owner": {
        "name": "Your Organization"
      },
      "plugins": [
        {
          "name": "groundx-agent-harness",
          "description": "GroundX agent runtime harness for API use, schema-first extraction, on-prem deployment, architecture, and supported GTM guidance.",
          "author": {
            "name": "GroundX"
          },
          "source": "./plugins/groundx-agent-harness",
          "strict": false,
          "skills": [
            "./skills/groundx-api",
            "./skills/groundx-mcp",
            "./skills/groundx-extraction-workflows",
            "./skills/groundx-on-prem",
            "./skills/groundx-architecture",
            "./skills/product-brand-gtm",
            "./skills/master-brand-gtm",
            "./skills/groundx-python"
          ]
        }
      ]
    }
    
  4. In Claude, go to Organization settings -> Plugins, click Add plugin, select GitHub, and enter the private/internal organization marketplace repository (not GroundX-Studio/groundx-agent-harness).

  5. Complete the sync so GroundX Agent Harness appears in the organization's plugin list. Users install it from Claude Cowork or Code (+ -> Add plugin -> GroundX Agent Harness), then run /reload-plugins or start a new session.

Connect the hosted MCP tools (optional). Open Settings -> Connectors -> + -> Add custom connector, or Customize -> Connectors from the Code tab, and enter Name: GroundX API with the MCP URL https://api.groundx.ai/mcp. Leave advanced OAuth fields empty unless Claude asks you to review discovered settings. Click Add, then Connect on the next screen, and enter your key on the GroundX sign-in page. Connector tool calls may default to per-tool approval prompts; choose Always allow only after accepting the broader connector permission.

In Claude Code sessions the plugin already adds the server: run /mcp, connect groundx, and enter your key on the GroundX sign-in page.

Claude Code Desktop

Claude Code Desktop supports plugins for local and SSH sessions. Install with the same commands as Claude CLI:

claude plugin marketplace add GroundX-Studio/groundx-agent-harness
claude plugin install groundx-agent-harness@groundx-agent-harness

Run /reload-plugins or start a new session. Connecting MCP is optional. The plugin already bundles the hosted groundx server on current Claude Code versions; on older versions add it manually:

claude mcp add --transport http groundx https://api.groundx.ai/mcp

Run /mcp, connect groundx, enter your key on the GroundX sign-in page, and start a new session.

Codex Desktop

Installing the plugin also registers the hosted groundx MCP server, so there is no separate "add the MCP app" step.

Install the plugin:

  1. Open Plugins -> Manage (or Manage marketplaces).

  2. Add a marketplace from this repository, using ref main and leaving sparse paths empty:

    https://github.com/GroundX-Studio/groundx-agent-harness
    
  3. Install GroundX Agent Harness and start a new Codex session.

Authenticate the server (optional — only needed to use the hosted tools), entirely in the app:

  1. Open Settings -> Plugins and find groundx in the list.
  2. Click Authenticate, then enter your key on the GroundX sign-in page.

Exporting GROUNDX_API_KEY in the environment Codex runs in authenticates instead, with no sign-in.

Only add a server by hand if groundx is missing from that list. In that case go to Settings -> Plugins -> Add -> Add MCP server, toggle the server type to Streamable HTTP, enter https://api.groundx.ai/mcp, and click Save; the new MCP server entry then shows an Authenticate button. Adding it while the plugin's entry already exists attaches the same server twice.

Claude CLI

Install the plugin:

claude plugin marketplace add GroundX-Studio/groundx-agent-harness
claude plugin install groundx-agent-harness@groundx-agent-harness

Then run /reload-plugins inside Claude Code, or start a new session. If claude plugin is not found, update Claude Code first.

Authenticate MCP (optional). The plugin already registers the hosted groundx server, listed as plugin:groundx-agent-harness:groundx. Run /mcp, connect groundx, enter your key on the GroundX sign-in page, and start a new session. Exporting GROUNDX_API_KEY before starting Claude Code works instead of signing in. Only on older Claude Code versions that do not read plugin MCP config do you need to add it yourself:

claude mcp add --transport http groundx https://api.groundx.ai/mcp

Codex CLI

Install the plugin:

codex plugin marketplace add GroundX-Studio/groundx-agent-harness --ref main
codex plugin add groundx-agent-harness@groundx-agent-harness

Authenticate MCP (optional). The plugin registers the hosted groundx server on install, so sign in rather than adding it:

codex mcp login groundx

Exporting GROUNDX_API_KEY in the environment Codex runs in works instead of signing in. Verify and start a new Codex session:

codex plugin list
codex mcp list

codex mcp list should show groundx as enabled. If it does not appear, you are on an older Codex build; add it yourself with codex mcp add groundx --url https://api.groundx.ai/mcp.

VS Code

Open the VS Code integrated terminal (Ctrl+ / Cmd+) and run the install for your agent.

Claude Code:

claude plugin marketplace add GroundX-Studio/groundx-agent-harness
claude plugin install groundx-agent-harness@groundx-agent-harness

Codex:

codex plugin marketplace add GroundX-Studio/groundx-agent-harness --ref main
codex plugin add groundx-agent-harness@groundx-agent-harness

Then reload plugins or start a new session. If claude plugin is not found, update Claude Code first.

Authenticate MCP (optional). Both plugins register the hosted groundx server on install, so you only need to sign in. Claude Code: run /mcp, connect groundx, and enter your key on the GroundX sign-in page. Codex:

codex mcp login groundx

Either way, exporting GROUNDX_API_KEY in the environment your agent runs in also works and skips the sign-in.

Everything else

The harness is built on the open Agent Skills (SKILL.md) standard, so agents beyond Claude and Codex (Cursor, Replit, Gemini, Windsurf, Copilot, and more) can use it too.

  1. Clone the harness:

    git clone https://github.com/GroundX-Studio/groundx-agent-harness
    
  2. Add its skills/ folder to your agent's skills directory. See your agent's docs for where skills live.

  3. Reload or restart your agent so it picks up the skills.

If your agent supports remote MCP, you can also add the optional tools: in your agent's MCP settings, add a Streamable HTTP server with URL https://api.groundx.ai/mcp, authenticate, and enter your key on the GroundX sign-in page.

Try GroundX Studio

See your agent put GroundX to work in about five minutes. The agent does the work: it creates the bucket and ingests the sample itself, so there are no manual dashboard steps. Your agent needs to reach GroundX for these, through the MCP tools or your API key; a chat-only agent can explain the steps but cannot run them.

  1. Hand it a document. Have your agent set up a bucket and load a sample invoice, then tell you when it is ready to search.
  2. Ask about it. For example: "What is the total due on that invoice, and which line does it come from?"
  3. Pull out the details. For example: "Pull the invoice number, date, vendor, each line item, and the total into a table."
  4. Make extraction accurate at scale. For real volume, describe the fields you want (or paste a sample of the JSON), hand over a few documents, and have it build an extraction workflow, run it, and refine the schema and prompts on its own until the output holds up.

Then point it at your own documents and go further: ask for a summary report, a way to classify them, or a small app to search them.

Verification

Run these checks without pasting secrets into chat.

List the GroundX Agent Harness skills you have available.
Use the GroundX Agent Harness references to explain the safest document ingest -> status polling -> search flow. Do not ask me for an API key.
Show my GroundX account context using the connector. Do not include raw credentials.

With a regular user key, normal GroundX API tools should be visible and partner/admin tools should not be visible.

With a Partner-tier key, connect the same MCP URL once. Partner resource tools should ask for customerUsername when they need to operate on a specific customer account. Do not paste API keys into prompts.

Use the GroundX Agent Harness extraction workflow guidance to design a schema for this document. If GroundX API tools are connected, ingest the file, check processing status, search or retrieve the processed content, compare the result to these expected fields, and suggest schema or prompt fixes. Do not ask me to paste an API key.

You can also run the local helper from a checkout of this repository:

node scripts/doctor.mjs

Data Handling

Do not commit customer documents, answer keys, private pilot notes, comparison outputs, credentials, or local run artifacts to this repository.

Rendered live from GroundX-Studio/groundx-agent-harness's GitHub README — not stored, always reflects the source repo.

10 Plugins

NameDescriptionCategorySource
groundx-agent-harnessGroundX agent runtime harness for API use, schema-first extraction, on-prem deployment, architecture, and supported GTM guidance../
groundx-apiSkill bundled in groundx-agent-harnessskill./skills/groundx-api
groundx-mcpSkill bundled in groundx-agent-harnessskill./skills/groundx-mcp
groundx-extraction-workflowsSkill bundled in groundx-agent-harnessskill./skills/groundx-extraction-workflows
groundx-on-premSkill bundled in groundx-agent-harnessskill./skills/groundx-on-prem
groundx-architectureSkill bundled in groundx-agent-harnessskill./skills/groundx-architecture
product-brand-gtmSkill bundled in groundx-agent-harnessskill./skills/product-brand-gtm
master-brand-gtmSkill bundled in groundx-agent-harnessskill./skills/master-brand-gtm
groundx-pythonSkill bundled in groundx-agent-harnessskill./skills/groundx-python
harness-feedbackSkill bundled in groundx-agent-harnessskill./skills/harness-feedback

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.