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.
This is a legitimate GopherHole SDK with proper authentication and reasonable permissions for its purpose as a developer tool. The code demonstrates good security practices with API key validation, proper use of environment variables, and no malicious patterns. However, there are some moderate-risk issues around broad exception handling, logging of potentially sensitive data, and unvalidated user input that should be addressed to bring the score higher. Supply chain analysis found 3 known vulnerabilities in dependencies (1 critical, 2 high severity). Package verification found 1 issue (1 critical, 0 high severity).
4 files analyzed · 11 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.
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
Web content fetching and conversion for efficient LLM usage
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.