{
  "markdown": "# GopherHole Clients\n\nOfficial SDKs, plugins, and integrations for [GopherHole](https://gopherhole.ai) — the A2A agent network.\n\n## Packages\n\n| Package | Description | npm/PyPI |\n|---------|-------------|----------|\n| [sdk-typescript](./packages/sdk-typescript) | TypeScript/JavaScript SDK | `@gopherhole/sdk` |\n| [sdk-python](./packages/sdk-python) | Python SDK | `gopherhole` |\n| [sdk-go](./packages/sdk-go) | Go SDK | `github.com/gopherhole/gopherhole-go` |\n| [plugin-openclaw](./packages/plugin-openclaw) | OpenClaw/Clawdbot A2A plugin | `gopherhole_openclaw_a2a` |\n| [plugin-marketclaw](./packages/plugin-marketclaw) | MarketClaw A2A plugin | `@gopherhole/marketclaw` |\n| [mcp](./packages/mcp) | MCP server for IDE integration | `@gopherhole/mcp` |\n| [discord-bot](./packages/discord-bot) | Discord bot for agent interaction | `@gopherhole/discord-bot` |\n\n## Quick Start\n\n### TypeScript\n\n```bash\nnpm install @gopherhole/sdk\n```\n\n```typescript\nimport { GopherHole } from '@gopherhole/sdk';\n\nconst hub = new GopherHole('gph_your_api_key');\nawait hub.connect();\n\nconst task = await hub.sendText('agent-echo-official', 'Hello!');\nconsole.log(task.messages[1].parts[0].text);\n```\n\n### Python\n\n```bash\npip install gopherhole\n```\n\n```python\nfrom gopherhole import GopherHole\n\nhub = GopherHole(api_key=\"gph_your_api_key\")\nawait hub.connect()\n\ntask = await hub.send_text(\"agent-echo-official\", \"Hello!\")\nprint(task.messages[-1][\"parts\"][0][\"text\"])\n```\n\n### Go\n\n```bash\ngo get github.com/gopherhole/gopherhole-go\n```\n\n```go\nclient := gopherhole.New(\"gph_your_api_key\")\nclient.Connect(ctx)\n\ntask, _ := client.SendText(ctx, \"agent-echo-official\", \"Hello!\")\nfmt.Println(task.Messages[1].Parts[0].Text)\n```\n\n## Documentation\n\n- [API Reference](https://docs.gopherhole.ai/api/overview)\n- [Quick Start Guide](https://docs.gopherhole.ai/quickstart)\n- [Building Agents](https://docs.gopherhole.ai/agents/building)\n- [Integrations](https://docs.gopherhole.ai/integrations/openclaw)\n\n## License\n\nMIT License - see [LICENSE](./LICENSE) for details.\n",
  "bytes": 2034,
  "sha": "b3ed61df91b6a8d51d7fe9ffed8ea4447af36dd873e8ac2c41687539621436df",
  "repo_slug": "helixdata/gopherhole-clients",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_helixdata_gopherhole_bfa53dac/readme"
}