← hcompany.ai

INDIVIDUAL MCP TOOL

read_file

Read a file from a browser session's machine; returns base64 content and metadata.

hcompany.ainone authenticationAvailability not checked

LIVE ENDPOINT

https://agp.eu.hcompany.ai/mcp

No auth detected

Connect to this endpoint to inspect the live schema for read_file and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

hcompany.ai

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.hai-agents]
url = "https://agp.eu.hcompany.ai/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "hai-agents": {
      "type": "http",
      "url": "https://agp.eu.hcompany.ai/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: hai-agents
Remote MCP URL: https://agp.eu.hcompany.ai/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "hai-agents": {
      "url": "https://agp.eu.hcompany.ai/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "hai-agents": {
      "type": "http",
      "url": "https://agp.eu.hcompany.ai/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "hai-agents",
  "transport": "streamable-http",
  "url": "https://agp.eu.hcompany.ai/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • run_agent — Start an agent on a task; return the answer or a session handle to wait on.
  • wait_for_session — Poll a session: with ``wait`` long-poll for the answer, else return the current snapshot.
  • list_agents — List agents the caller can run: their org's agents plus the public ``h/`` ones.
  • send_message — Send a follow-up message to a running session.
  • cancel_session — Cancel a session; a no-op if it does not exist or already finished.
  • share_session — Make a session publicly readable and return its absolute share URL.
  • list_files — List files on a browser session's machine (e.
  • write_file — Write base64-encoded content to a file on a browser session's machine.