1. Conduid
  2. Developer Tools
  3. Go MCP Tools
MCP server · Developer Tools

Go MCP Tools

MCP-server with tools for golang code analysis and manipulation

Unclaimed MIT last commit a year ago devtools
49Fair

Scored 3 months ago · breakdown

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

Install
npx go-mcp-tools

This 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

I know everything about Go MCP Tools. Ask me about installation, configuration, usage, or troubleshooting.

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.

Questions

About Go MCP Tools

How do I install Go MCP Tools?

Run npx go-mcp-tools, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Go MCP Tools safe to use with an AI agent?

Its trust score is 49 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Go MCP Tools still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.