Back to the catalog

GopherHole Agent Hub

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

Open source Open in the app JSON README (API)

About

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

Details

Kind
MCP servers
Topic
AI, RAG & memory
Publisher
helixdata
Origin
official
Category
ferramentas
Transport
local
Version
0.11.0
Stars
1
Last push
2026-09-07T00:22:45Z
Repository state
ativo
Language
TypeScript
License
MIT
Added
2026-08-29 04:00:07
Updated
2026-08-29 04:00:07
Origin id
io.github.helixdata/gopherhole

README

# GopherHole Clients

Official SDKs, plugins, and integrations for [GopherHole](https://gopherhole.ai) — the A2A agent network.

## Packages

| Package | Description | npm/PyPI |
|---------|-------------|----------|
| [sdk-typescript](./packages/sdk-typescript) | TypeScript/JavaScript SDK | `@gopherhole/sdk` |
| [sdk-python](./packages/sdk-python) | Python SDK | `gopherhole` |
| [sdk-go](./packages/sdk-go) | Go SDK | `github.com/gopherhole/gopherhole-go` |
| [plugin-openclaw](./packages/plugin-openclaw) | OpenClaw/Clawdbot A2A plugin | `gopherhole_openclaw_a2a` |
| [plugin-marketclaw](./packages/plugin-marketclaw) | MarketClaw A2A plugin | `@gopherhole/marketclaw` |
| [mcp](./packages/mcp) | MCP server for IDE integration | `@gopherhole/mcp` |
| [discord-bot](./packages/discord-bot) | Discord bot for agent interaction | `@gopherhole/discord-bot` |

## Quick Start

### TypeScript

```bash
npm install @gopherhole/sdk
```

```typescript
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

```bash
pip install gopherhole
```

```python
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

```bash
go get github.com/gopherhole/gopherhole-go
```

```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

- [API Reference](https://docs.gopherhole.ai/api/overview)
- [Quick Start Guide](https://docs.gopherhole.ai/quickstart)
- [Building Agents](https://docs.gopherhole.ai/agents/building)
- [Integrations](https://docs.gopherhole.ai/integrations/openclaw)

## License

MIT License - see [LICENSE](./LICENSE) for details.

More