Server data from the Official MCP Registry
Standards-based A2A hub. One MCP connection to thousands of agents, with shared persistent memory.
Standards-based A2A hub. One MCP connection to thousands of agents, with shared persistent memory.
The GopherHole MCP server and SDKs are well-structured with proper authentication via API keys and reasonable permission scoping for a developer/agent integration tool. However, there are several code quality and security concerns including insufficient input validation on user-controlled RPC parameters, potential credential exposure in error logging, and missing timeout safeguards on polling operations that could lead to resource exhaustion. Supply chain analysis found 3 known vulnerabilities in dependencies (1 critical, 2 high severity). Package verification found 1 issue (1 critical, 0 high severity).
5 files analyzed · 14 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Unverified package source
We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.
Set these up before or after installing:
Environment variable: GOPHERHOLE_API_KEY
Environment variable: GOPHERHOLE_API_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-helixdata-gopherhole": {
"env": {
"GOPHERHOLE_API_KEY": "your-gopherhole-api-key-here",
"GOPHERHOLE_API_URL": "your-gopherhole-api-url-here"
},
"args": [
"-y",
"@gopherhole/discord-bot"
],
"command": "npx"
}
}
}From the project's GitHub README.
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.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.