LIVE ENDPOINT
https://agp.eu.hcompany.ai/mcp
Connect to this endpoint to inspect the live schema for send_message and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
- A tool name or description suggests sending messages.
Parent server
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.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.read_file— Read a file from a browser session's machine; returns base64 content and metadata.write_file— Write base64-encoded content to a file on a browser session's machine.