About Go MCP Tools
Go MCP Tools is an MCP server published by adriansahlman in the Developer Tools category: mCP-server with tools for golang code analysis and manipulation. It has been installed 0 times through Conduid.
The repository has 1 stars and 0 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx go-mcp-toolsThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Go MCP Tools
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
Go MCP Tools
Collection of tools that I feel are missing when using Copilot agent mode in Go projects.
No tools require the column index for symbols like the gopls cli, as the coding agent does not have easy access to this information and is terrible at counting. Instead it can pass the symbol name and we look up the column index instead where needed.
The tools may be served via stdio or http. The mark3labs MCP server implementation is used for the server.
Tools
Inspect
Look at a package, file, or symbol and get a summary. The summary leverages gopls and go/ast for adding useful information such as references, implementers, scopes, call hierarchies e.t.c.
Rename
Rename a symbol. Basically just calls gopls rename.
Usage
May be compiled or run directly using go, its entrypoint being cmd/main.go.
VSCode
In your settings json file, add the following:
"mcp": {
"servers": {
"go": {
"type": "stdio",
"command": "/bin/bash",
"args": [
"-c",
"go run /path/to/go-mcp-tools/cmd/main.go server",
]
},
}
},
You can use Ctrl+Shift+P or Cmd+Shift+P to select MCP: List Servers, select the go server and start it.
Now the tools should show up when you configure available tools for your coding agent.
Other Editors/Coding Applications
Look up how to integrate MCP tools with the application you are using and use either stdio or http transport.
Disclaimers
80% of this project is written by Claude, with heavy supervision.
README mirrored from the source repository 3 months ago. The original is authoritative.