Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-helixdata-gopherhole": {
"args": [
"-y",
"@gopherhole/sdk"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Official SDKs, plugins, and integrations for GopherHole — the A2A agent network.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@gopherhole/sdk' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @gopherhole/sdk against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
MCP server for Spanning Cloud Backup — M365/GWS/Salesforce backups, restores, audit.
AI agent control of 3D printers — 432 tools for OctoPrint, Moonraker, Bambu, Prusa, Elegoo
MCP server for Kaseya Autotask PSA — companies, tickets, projects, time entries, and more.
On-chain provenance lookup for AnchorRegistry. Resolve AR-IDs, hashes, and full trees. Authless.
MCP Security Weekly
Get CVE alerts and security updates for io.github.helixdata/gopherhole and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Official SDKs, plugins, and integrations for GopherHole — the A2A agent network.
| 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 |
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);
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 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)
MIT License - see LICENSE for details.