1. Conduid
  2. Automation
  3. lightpanda-io/gomcp
MCP server · Automation

lightpanda-io/gomcp

A go library for building Model Context Protocol (MCP) servers.

Unclaimed Apache-2.0 last commit 7 months ago ai
63Good

Scored 19 days ago · breakdown

About lightpanda-io/gomcp

lightpanda-io/gomcp is an MCP server published by lightpanda-io in the Automation category: a go library for building Model Context Protocol (MCP) servers. It has been installed 0 times through Conduid.

The repository has 57 stars and 11 forks, with the last commit 7 months 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 gomcp
Claude Code
claude mcp add gomcp -- npx -y @gomcp/analytics
npx
npx -y @gomcp/analytics

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 lightpanda-io/gomcp

Powered by Claude · Grounded in docs

I know everything about lightpanda-io/gomcp. 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.

Releases

1.0.41.0.4 · 23 Jun 2025
1.0.21.0.2 · 19 Jun 2025
1.0.11.0.1 · 12 May 2025
1.0.01.0.0 · 9 May 2025

README

Lightpanda Go MCP server


:warning: This project was a first experiment to expose an MCP for Lightpanda Browser. But now, the browser embed an MCP server natively. More details in the native MCP blog post.


gomcp is an MCP server written in Go.

It exposes tools to interact with Lightpanda Browser via CDP protocol.

flowchart LR;
  A[CDP Client]-->|SSE or stdio|gomcp;
  gomcp-->|CDP|B[Lightpanda browser];

Installation

Requirements

gomcp requires you to have already installed Lightpanda Browser.

Build from source

You need to install Go to build from source.

Once you have cloned the repository, build the binary with go build.

Usage

By default, gocmp starts a local instance of Lightpanda browser.

On the first run, you need to download the binary with the command:

$ gomcp download

The browser is stored in the user config directory. $XDG_CONFIG_HOME/lightpanda-gomcp or HOME/.config/lightpanda-gomcp on Linux, $HOME/Library/Application Support/lightpanda-gomcp on Macosx.

You can remove the downloaded binary with gomcp cleanup command.

You can connect on a remote browser with the option --cdp.

$ gomcp -cdp ws://127.0.0.1:9222 stdio

Configure Claude Desktop

You can configure gomcp as a source for your Claude Desktop.

Claude Desktop uses the stdio transport to connect to an MCP server.

Edit the claude_desktop_config.json configuration file and add gomcp as the mcp server and restart Claude Desktop.

{
  "mcpServers": {
    "lightpanda": {
      "command": "/path/to/gomcp",
      "args": ["stdio"]
    }
  }
}

The model context protocol website gives a way to find claude_desktop_config.json file.

Standard input/output (stdio)

You can start gomcp as a stdio.

$ ./gomcp stdio

Server-Sent Events (SSE)

You can start gomcp as a SSE.

By default, the server listens to the HTTP connection at 127.0.0.1:8081.

$ ./gomcp sse
2025/05/06 14:37:13 INFO server listening addr=127.0.0.1:8081

Thanks

gomcp is built thanks of open source projects, in particular:

README mirrored from the source repository 19 days ago. The original is authoritative.

Questions

About lightpanda-io/gomcp

How do I install lightpanda-io/gomcp?

Run npx gomcp, 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 lightpanda-io/gomcp safe to use with an AI agent?

Its trust score is 63 out of 100 (good). 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 lightpanda-io/gomcp still maintained?

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