gopher-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@gopher-mcpsearch Veronica for discussions about retro computing"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
gopher mcp
An MCP server that speaks the Gopher protocol, the pre HTTP internet, still running since 1991.
Gopher is a text menu protocol: you open a menu, it lists typed items (directories, text files, search services), and you navigate deeper. This server is a raw TCP Gopher client (port 70), no HTTP, no scraping.
Why it's original
Nobody else has a Gopher client as an MCP tool. The AI can now surf gopherspace, Floodgap, SDF, Veronica search, and read documents that predate the web.
Related MCP server: mcp-virtual-fs
Tools
Tool | What it does |
| Open a gopher menu and list its items (dirs, text, search, binaries) |
| Read a plain text file (gopher type 0) |
| Run a Veronica-2 search across gopherspace |
Usage
npm run build && node dist/index.jsExample flow:
open_menu { host: "gopher.floodgap.com", selector: "/" }
search_veronica { host: "gopher.floodgap.com", query: "retro games" }
read_textfile { host: "gopher.floodgap.com", selector: "/0/floodgap/new" }Default host is gopher.floodgap.com (Floodgap Systems, serving gopher since 1999, blocklist updated April 2026, ~81,000 Veronica matches indexed). All keyless, no auth.
Available Tools
3 toolsread_textfileA
Read a plain-text file from gopherspace (gopher type 0). Useful for the floodgap texts, old FAQ collections, and historical documents.
| Name | Required | Description | Default |
|---|---|---|---|
| host | No | gopher.floodgap.com | |
| maxChars | No | ||
| selector | Yes | File selector, e.g. '/0/floodgap/new' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states the gopher type (0) and that it reads plain text, but does not disclose truncation behavior due to maxChars, error handling, or response structure. This lack of behavioral context is a notable gap for a file retrieval tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences: the first front-loads the core function, the second provides use cases. Every word earns its place with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, but with no output schema and no annotations, the description should clarify behaviors like maxChars truncation or response format. It covers purpose and usage but leaves operational details unaddressed, making it minimally adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is only 33% (only selector has a description). The tool description does not explain host or maxChars semantics, leaving the agent to infer their purpose from defaults alone. It also fails to elaborate on how to construct a valid selector beyond the schema example.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Read a plain-text file from gopherspace (gopher type 0)', giving a specific verb and resource. It distinguishes this from sibling tools like open_menu and search_veronica by narrowing the scope to text files.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context by mentioning use for 'floodgap texts, old FAQ collections, and historical documents', which implies the tool is appropriate for reading textual gopher content. It does not explicitly exclude other tools, but the context and sibling names indirectly clarify alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_veronicaA
Run a Gopher search (type 7) — e.g. a Veronica-2 search on gopher.floodgap.com (selector '/7/v2/vs'). Returns matching items as a menu.
| Name | Required | Description | Default |
|---|---|---|---|
| host | No | gopher.floodgap.com | |
| port | No | ||
| query | Yes | Search terms | |
| selector | No | Search selector, typically /v2/vs on floodgap | /v2/vs |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses the core behavior (search and menu return) and gives an example host/selector, but it does not mention error handling, network side effects, read-only nature, or any potential pitfalls. This is a moderate level of transparency for a search tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence that immediately states the tool's purpose and gives a concrete example. It is front-loaded and contains no unnecessary information, making it appropriately concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 4 parameters, no annotations, and no output schema, the description covers the essential idea but lacks important details. It does not explain the output format beyond 'menu', does not explicitly mention that query is required, and ignores port and the selector discrepancy. It is adequate for a simple tool but has clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers only 50% of parameters (query and selector have descriptions, host and port do not). The description adds an example host and selector, which partially compensates, but the example selector '/7/v2/vs' conflicts with the schema default '/v2/vs', creating confusion. Port is not addressed at all, and the description does not fully compensate for the schema gaps.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool performs a Gopher search (type 7), provides a concrete example of a Veronica-2 search on gopher.floodgap.com, and indicates the return format as a menu. This distinguishes it from siblings like open_menu and read_textfile, which handle different Gopher operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for running a Gopher search, but it does not explicitly state when to use this tool versus alternatives like open_menu or read_textfile. No exclusions or prerequisites are mentioned, so guidance is only implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
v1.0.0- First observed
open_menu - First observed
read_textfile - First observed
search_veronica
TDQS
Scored across 3 tools
Each tool targets a distinct Gopher operation: browsing menus, reading text files, and searching. There is no overlap in purpose or selector types.
All tool names follow a consistent verb_noun pattern (open_, read_, search_) with descriptive nouns. The convention is uniform and predictable.
Three tools is an appropriate size for a niche protocol like Gopher, covering the core interactions without unnecessary bloat.
Core Gopher workflows (browse, read, search) are covered. A minor gap is the lack of support for binary or other non-text item types, but for a text-focused MCP server this is acceptable.
Maintenance
Related MCP Connectors
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
An MCP server that gives your AI access to the source code and docs of all public github repos
Search and install 4,000+ security-scanned MCP servers from inside any MCP-aware AI client.
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA powerful MCP server for making HTTP requests, GraphQL queries, and TCP/Telnet connections from AI assistants.7MIT
- AlicenseAqualityCmaintenanceAn MCP server that provides AI agents with a persistent, PostgreSQL-backed virtual filesystem, supporting session-isolated file operations, cross-session shared stores, and glob/grep search.1126 npm3MIT
- FlicenseAqualityBmaintenanceAn MCP server that provides AI clients with access to developer documentation via llms.txt files. Exposes tools, resources, and prompts.31-
- FlicenseAqualityCmaintenanceA read-only MCP server that enables AI assistants to search files, list directories, retrieve system info, and get file metadata on the local file system.4-