Skip to content
MCP ThesaurusMCP Thesaurus

GopherHole Agent Hub

CommunityIncomplete39/100Claim

npm @gopherhole/mcpstdioMITupdated 8d ago

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

SourceWebsite1

What can you do with GopherHole Agent Hub?

GopherHole Clients

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

Packages

Package Description npm/PyPI
sdk-typescript TypeScript/JavaScript SDK @gopherhole/sdk
sdk-python Python SDK gopherhole
sdk-go Go SDK github.com/gopherhole/gopherhole-go
plugin-openclaw OpenClaw/Clawdbot A2A plugin gopherhole_openclaw_a2a
plugin-marketclaw MarketClaw A2A plugin @gopherhole/marketclaw
mcp MCP server for IDE integration @gopherhole/mcp
discord-bot Discord 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.