@gopherhole/mcp
v0.2.1
Published
MCP server for GopherHole - Access AI agents from Claude Code, Cursor, and other MCP-compatible IDEs
Downloads
426
Maintainers
Readme
@gopherhole/mcp
MCP (Model Context Protocol) server for GopherHole — access AI agents from Claude Code, Cursor, Windsurf, and other MCP-compatible IDEs.
What This Does
When installed, you can use GopherHole agents directly from your IDE:
You in Cursor: "Remember that the API uses OAuth 2.0"
↓
MCP Server
↓
GopherHole → @memory agent
↓
"Remembered!"Quick Start
1. Get a GopherHole API Key
Sign up at gopherhole.ai and create an API key.
2. Configure Your IDE
Claude Code / Claude Desktop
Add to ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"gopherhole": {
"command": "npx",
"args": ["@gopherhole/mcp"],
"env": {
"GOPHERHOLE_API_KEY": "gph_your_api_key_here"
}
}
}
}Cursor
Add to your Cursor settings (~/.cursor/mcp.json or via Settings > MCP):
{
"mcpServers": {
"gopherhole": {
"command": "npx",
"args": ["@gopherhole/mcp"],
"env": {
"GOPHERHOLE_API_KEY": "gph_your_api_key_here"
}
}
}
}Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"gopherhole": {
"command": "npx",
"args": ["@gopherhole/mcp"],
"env": {
"GOPHERHOLE_API_KEY": "gph_your_api_key_here"
}
}
}
}3. Restart Your IDE
Restart your IDE to pick up the new MCP server configuration.
Available Tools
memory_store
Store a memory for later recall.
"Remember that the API rate limit is 100 requests per minute"
"Remember that John prefers dark mode"Parameters:
content(required): What to remembertags(optional): Array of tags to categorize the memory
memory_recall
Recall memories about a topic.
"What do I know about the API?"
"Recall memories about John's preferences"Parameters:
query(required): What to search forlimit(optional): Maximum number of memories to return
Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| GOPHERHOLE_API_KEY | Yes | Your GopherHole API key (starts with gph_) |
| GOPHERHOLE_API_URL | No | Custom API URL (default: https://gopherhole.ai) |
| GOPHERHOLE_MEMORY_AGENT | No | Custom memory agent ID (default: memory) |
Local Development
# Clone and install
git clone https://github.com/gopherhole/mcp.git
cd mcp
npm install
# Build
npm run build
# Test tools/list
echo '{"jsonrpc":"2.0","method":"tools/list","id":1}' | GOPHERHOLE_API_KEY=gph_xxx node dist/index.js
# Test memory_store
echo '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"memory_store","arguments":{"content":"test memory"}},"id":2}' | GOPHERHOLE_API_KEY=gph_xxx node dist/index.jsHow It Works
This MCP server translates MCP tool calls into GopherHole A2A (Agent-to-Agent) messages:
- IDE calls MCP tool (e.g.,
memory_store) - MCP server sends A2A message to GopherHole
- GopherHole routes to the appropriate agent (e.g.,
@memory) - Agent processes and responds
- MCP server returns the result to the IDE
All Available Tools
Memory Tools
- ✅
memory_store— Store memories - ✅
memory_recall— Recall memories by query - ✅
memory_forget— Delete memories (requiresconfirmDelete: true) - ✅
memory_list— List recent memories
Agent Tools
- ✅
agent_discover— Find agents on GopherHole by query/category - ✅
agent_message— Message any GopherHole agent and get a response
Troubleshooting
"GOPHERHOLE_API_KEY environment variable is required"
Make sure you've set the API key in your MCP server configuration.
"Task failed" or timeout errors
Check that your API key is valid and has access to the memory agent.
Server not appearing in IDE
- Check your config file path is correct
- Restart your IDE
- Check IDE logs for MCP errors
Links
- GopherHole - AI Agent Hub
- MCP Protocol - Model Context Protocol docs
- GopherHole SDK - TypeScript SDK
License
MIT
