Install
$ agentstack add mcp-softchris-hello-mcp-go ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Hello MCP Go 👋
Welcome to the Hello MCP Go repository! 🚀 This project demonstrates how to build an MCP (Model Context Protocol) server in Go. Whether you're a Go enthusiast or just curious about MCP, you're in the right place! 🛠️
What is this? 🤔
This repository showcases:
- How to build an MCP server using Go 🐹.
- A simple and fun way to explore MCP Protocol 🎮.
- A starting point for your own custom MCP server adventures! 🌟
Tools 🌟
- hello, takes the parameters Submitter and Content.
- calculate, takes the parameters A and B. Example use is "calculate 2 and 4".
Quick Start 🚀
- Clone
- Install
- Build
- Run
- Clone the repository:
``bash git clone https://github.com/your-username/hello-mcp-go.git cd hello-mcp ``
- Install dependencies:
``bash go mod tidy ``
- Build the project:
``bash go build -ldflags="-s -w" -o server.exe main.go ` or for Linux: `bash go build -ldflags="-s -w" -o server main.go ``
You will use this later when you want to consume it from Visual Studio Code.
- Run the server:
``bash ./server ``
Consuming the Server with GitHub Copilot Agent Mode 🍴
- Place yourself in mcp.json, make sure the server has been built (right now it's adjusted).
- Adjust the "command" to point to the absolute path of your executable.
``json { "servers": { "my-mcp-server-d73c20f3": { "type": "stdio", "command": "/path/to/your/executable" } } } ``
- Open Copilot and select Agent in dropdown
- Select the play icon.
You should see the tool icon showing two tools.
- Test it with a phrase like so "calculate 2 and 4". This should present a button that invokes the tool on the server.
Have Fun! 🎉
This project is all about learning and having fun. Feel free to experiment, break things, and create something amazing! 🌈
Happy coding! 💻
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: softchris
- Source: softchris/hello-mcp-go
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.