> ## Documentation Index
> Fetch the complete documentation index at: https://hub.hcompany.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Provide your agents access to the docs

> Connect Claude, Cursor, and other MCP clients to the H Tech Hub docs.

This documentation site ships a hosted [Model Context Protocol](https://modelcontextprotocol.io) server that covers **the documentation only**. Connect it to your AI tool and the tool can search and read every page on this site while it answers your questions — no stale training data, no copy-pasting pages into the context window. It cannot run agents, call the H API, or touch your account.

The server is public and requires no API key:

```text theme={null}
https://hub.hcompany.ai/mcp
```

<Note>
  Looking to **run and manage Computer-Use Agents** from an MCP host? That's the separate [Computer-Use Agents MCP server](/computer-use-agents/mcp) — it talks to the live API and needs your H API key.
</Note>

## Add to your editor

One click installs the server; no credentials needed:

<CardGroup cols={2}>
  <Card title="Add to Cursor" icon="https://cdn.simpleicons.org/cursor/6b6b70" href="cursor://anysphere.cursor-deeplink/mcp/install?name=h-tech-hub-docs&config=eyJ1cmwiOiJodHRwczovL2h1Yi5oY29tcGFueS5haS9tY3AifQ==">
    Opens Cursor and prompts to install.
  </Card>

  <Card title="Add to VS Code" icon="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vscode/vscode-original.svg" href="vscode:mcp/install?%7B%22name%22%3A%20%22h-tech-hub-docs%22%2C%20%22type%22%3A%20%22http%22%2C%20%22url%22%3A%20%22https%3A//hub.hcompany.ai/mcp%22%7D">
    Opens VS Code and prompts to install.
  </Card>
</CardGroup>

You can also copy the server URL from the contextual menu on any page of this site.

## Connect manually

<CodeGroup>
  ```json Cursor theme={null}
  // ~/.cursor/mcp.json
  {
    "mcpServers": {
      "h-tech-hub-docs": {
        "url": "https://hub.hcompany.ai/mcp"
      }
    }
  }
  ```

  ```bash Claude Code theme={null}
  claude mcp add --scope user --transport http h-tech-hub-docs https://hub.hcompany.ai/mcp
  ```

  ```json VS Code theme={null}
  // user mcp.json (MCP: Open User Configuration)
  {
    "servers": {
      "h-tech-hub-docs": {
        "type": "http",
        "url": "https://hub.hcompany.ai/mcp"
      }
    }
  }
  ```

  ```toml Codex theme={null}
  # ~/.codex/config.toml
  [mcp_servers.h-tech-hub-docs]
  url = "https://hub.hcompany.ai/mcp"
  ```
</CodeGroup>

Clients that support MCP discovery can also find the server automatically via the discovery document at [`/.well-known/mcp`](https://hub.hcompany.ai/.well-known/mcp).

## Tools

| Tool                               | What it does                                                                                                                      |
| ---------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| `search_h_tech_hub`                | Searches the site and returns relevant snippets with titles and links.                                                            |
| `query_docs_filesystem_h_tech_hub` | Runs read-only queries (`rg`, `cat`, `tree`, `jq`, ...) against a virtual filesystem containing every page and the OpenAPI specs. |
| `submit_feedback`                  | Reports incorrect, outdated, or confusing documentation to the docs team.                                                         |

The search and filesystem tools are read-only; the server has no access to your account, your sessions, or anything beyond the published content of this site.

## Other machine-readable formats

If your tool doesn't speak MCP, the same content is available as plain Markdown:

* [`/llms.txt`](https://hub.hcompany.ai/llms.txt) — an index of every page with links and descriptions.
* Append `.md` to any page URL to get its raw Markdown, e.g. [`/quickstart.md`](https://hub.hcompany.ai/quickstart.md).
