MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

G
Go MCP Server Example

Example of a simple multi-tool MCP server in Go.

创建于 3/23/2026
更新于 about 4 hours ago
Repository documentation and setup instructions

MCP Server Example in Go

This is a simple MCP server written in Go with the following tools:

  1. Time tool that returns current time in the requested IANA timezone, i.e. America/New_York
  2. Search tool that makes a search request to Brave and pareses the web search results.
  3. Web page download tool that downloads the content of a specifies URL as a string and parses the HTML to get only text content. (Quick and wrong imlementation).

Note: This project is for learning purposes only, it is not suited for any production use.

快速设置
此服务器的安装指南

安装命令 (包未发布)

git clone https://github.com/EugeneKirian/go-mcp-server-example
手动安装: 请查看 README 获取详细的设置说明和所需的其他依赖项。

Cursor 配置 (mcp.json)

{ "mcpServers": { "eugenekirian-go-mcp-server-example": { "command": "git", "args": [ "clone", "https://github.com/EugeneKirian/go-mcp-server-example" ] } } }