MCP Hub
Back to servers

GopherHole Agent Hub

Standards-based A2A hub. One MCP connection to thousands of agents, with shared persistent memory.

Registry
Updated
Apr 29, 2026

Quick Install

npx -y @gopherhole/mcp

GopherHole Clients

Official SDKs, plugins, and integrations for GopherHole — the A2A agent network.

Packages

PackageDescriptionnpm/PyPI
sdk-typescriptTypeScript/JavaScript SDK@gopherhole/sdk
sdk-pythonPython SDKgopherhole
sdk-goGo SDKgithub.com/gopherhole/gopherhole-go
plugin-openclawOpenClaw/Clawdbot A2A plugingopherhole_openclaw_a2a
plugin-marketclawMarketClaw A2A plugin@gopherhole/marketclaw
mcpMCP server for IDE integration@gopherhole/mcp
discord-botDiscord bot for agent interaction@gopherhole/discord-bot

Quick Start

TypeScript

npm install @gopherhole/sdk
import { GopherHole } from '@gopherhole/sdk';

const hub = new GopherHole('gph_your_api_key');
await hub.connect();

const task = await hub.sendText('agent-echo-official', 'Hello!');
console.log(task.messages[1].parts[0].text);

Python

pip install gopherhole
from gopherhole import GopherHole

hub = GopherHole(api_key="gph_your_api_key")
await hub.connect()

task = await hub.send_text("agent-echo-official", "Hello!")
print(task.messages[-1]["parts"][0]["text"])

Go

go get github.com/gopherhole/gopherhole-go
client := gopherhole.New("gph_your_api_key")
client.Connect(ctx)

task, _ := client.SendText(ctx, "agent-echo-official", "Hello!")
fmt.Println(task.Messages[1].Parts[0].Text)

Documentation

License

MIT License - see LICENSE for details.

Reviews

No reviews yet

Sign in to write a review