toolhive VS github-mcp-server

Compare toolhive vs github-mcp-server and see what are their differences.

toolhive

ToolHive makes deploying MCP servers easy, secure and fun (by stacklok)
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
getstream.io
featured
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
toolhive github-mcp-server
10 16
746 17,221
40.8% 14.9%
9.9 9.6
2 days ago 7 days ago
Go Go
Apache License 2.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

toolhive

Posts with mentions or reviews of toolhive. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-06-03.
  • Who are your MCP servers talking to?
    1 project | dev.to | 26 Jun 2025
    With the new network isolation features in ToolHive, you don’t have to trust. You can verify – and enforce.
  • ToolHive Operator: Multi-Namespace Support for Enhanced Security and Flexibility
    1 project | dev.to | 10 Jun 2025
    GitHub
  • From Unknown to Verified: Solving the MCP Server Trust Problem
    2 projects | dev.to | 3 Jun 2025
    At Stacklok, we created ToolHive because we saw a gap in running MCP servers easily but also securely. As security engineers, we knew there had to be a better way.
  • Show HN: MCP Defender – OSS AI Firewall for Protecting MCP in Cursor/Claude etc.
    1 project | news.ycombinator.com | 31 May 2025
    This looks interesting, but anytime security is offloaded to an LLM I am extremely skeptical. IMO the right way to do this is to enforce permissions explicitly through a AuthZ policy. Something like what Toolhive [0] is doing is the right way I think.

    All MCP comms from client to server go through an SSE proxy which has AuthN and AuthZ enabled. You can create custom policies for AuthZ using Cedar [1].

    [0] https://github.com/stacklok/toolhive, https://github.com/stacklok/toolhive/blob/main/docs/authz.md

  • A secure way to find and run MCP servers
    1 project | news.ycombinator.com | 26 May 2025
  • ToolHive: An MCP Kubernetes Operator
    2 projects | dev.to | 1 May 2025
    Building on our earlier discussion about enterprises needing dedicated hosting for MCP servers and ToolHive's Kubernetes-based solution, we're excited to announce our new Kubernetes Operator for ToolHive. This specialised tool streamlines the secure deployment of MCP servers to Kubernetes environments for enterprise and engineers.
  • No Dockerfile? No problem! Running Node and Python MCPs with ToolHive
    3 projects | dev.to | 23 Apr 2025
    For more details, check out the README .
  • ToolHive: Secure MCP in a Kubernetes-native World
    2 projects | dev.to | 22 Apr 2025
    The team at Stacklok, empowered by our CEO, Craig McLuckie (and co-creator of Kubernetes), recently released ToolHive, an open source project that offers a convenient way to run MCP servers with familiar technologies with authentication, authorization and network isolation. Let’s take a closer look at how ToolHive and Kubernetes come together to support MCP in an enterprise environment.
  • Secure-by-Default Authorization for MCP Servers powered by ToolHive
    2 projects | dev.to | 15 Apr 2025
    As more teams start deploying MCP servers to power tool-calling agents, one question comes up fast: how do you control who can call what? It’s not just about verifying identity, it’s about enforcing the right permissions, without bloating every server with bespoke auth logic. ToolHive was built to solve exactly this problem. It separates authentication from authorization, integrates cleanly with existing identity providers, and uses Amazon’s Cedar policy language to define clear, auditable access rules. The result is a simple but powerful way to lock down tool access without embedding auth logic into every server you run.
  • ToolHive: Making MCP Servers Easy, Secure, and Fun
    1 project | dev.to | 9 Apr 2025
    We are excited about the potential of Model Context Protocol (MCP) servers and inspired to make it more consistent to set up, easier to configure and overall secure. So, we're releasing ToolHive as an open-source project that uses existing technology (e.g. Docker and Kubernetes) for better packaging, security utilities, and more. Let's build on MCP together!

github-mcp-server

Posts with mentions or reviews of github-mcp-server. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-06-03.
  • From Unknown to Verified: Solving the MCP Server Trust Problem
    2 projects | dev.to | 3 Jun 2025
  • Self-Hosted GitHub MCP Server for VS Code Copilot
    1 project | news.ycombinator.com | 24 May 2025
    I built (upon https://github.com/github/github-mcp-server/) a MCP (Model Context Protocol) server that integrates with VS Code's Copilot in Agent mode using SSE and GitHub APIs.

    No client-side setup required — just add a .vscode/mcp.json config pointing to the server.

    instructions: http://13.39.253.143

  • GitHub's MCP Server: You Can Now Talk to Your Repos
    1 project | dev.to | 22 May 2025
    GitHub has released a new open-source Model Context Protocol (MCP) server as part of its latest GitHub Copilot update . Announced in April 2025, the release marks GitHub’s first implementation of the MCP standard developed by Anthropic. The new server is a complete rewrite in Go, preserving “100% of the old server’s functionality” while adding improvements like customizable tool descriptions, integrated code scanning, and a new get_me function for natural language queries e.g. “show me my private repos”.
  • Show HN: Representing Agents as MCP Servers
    4 projects | news.ycombinator.com | 21 May 2025
    - workflows/{WorkflowName}/cancel – Terminate workflow

    We’ve also implemented Temporal for durable execution [6], so agent workflows can be paused, resumed and retried in production settings.

    This demo [7] shows Claude invoking an MCP agent server, running workflows when appropriate, and polling for status. It basically shows agentic behavior on both the MCP client and MCP server side.

    We're excited about the potential this unlocks—especially as more applications become MCP-compatible clients. We'd love your feedback and ideas!

    [1] - https://news.ycombinator.com/item?id=42867050

    [2] - https://github.com/lastmile-ai/mcp-agent

    [3] - https://www.anthropic.com/research/building-effective-agents

    [4] - https://github.com/github/github-mcp-server

    [5] - https://github.com/lastmile-ai/mcp-agent/tree/main/examples/...

    [6] - https://github.com/lastmile-ai/mcp-agent/tree/main/examples/...

    [7] - https://github.com/user-attachments/assets/f651af86-222d-4df... [DEMO]

  • MCP Security: Tr-tr-tr-tricky, tricky, tricky
    2 projects | dev.to | 13 May 2025
    Here are the official instructions from GitHub- https://github.com/github/github-mcp-server.
  • How to setup an official GitHub MCP Server without Docker nor Installing
    1 project | dev.to | 10 May 2025
    GitHub offers an official GitHub MCP Server that enhances AI assistants with GitHub capabilities: https://github.com/github/github-mcp-server
  • GitHub MCP with Amazon Q CLI
    3 projects | dev.to | 5 May 2025
    We can now add the github mcp config.
  • Running Model Context Protocol (MCP) Servers on containers using Finch
    2 projects | dev.to | 2 May 2025
    Announced a few weeks ago, the GitHub MCP Server allows you to get additional context from any GitHub repo, providing details about those repos such as commits, issues, pull requests and more.
  • LangChain4J musings, six months after
    8 projects | dev.to | 1 May 2025
    FROM ghcr.io/sparfenyuk/mcp-proxy:latest ENV VERSION=0.2.0 ENV ARCHIVE_NAME=github-mcp-server_Linux_x86_64.tar.gz RUN wget https://github.com/github/github-mcp-server/releases/download/v$VERSION/$ARCHIVE_NAME -O /tmp/$ARCHIVE_NAME \ #1 && tar -xzvf /tmp/$ARCHIVE_NAME -C /opt \ #2 && rm /tmp/$ARCHIVE_NAME #3 RUN chmod +x /opt/github-mcp-server #4
  • Setting Up the Official GitHub MCP Server: A simple Guide
    3 projects | dev.to | 16 Apr 2025
    The easiest way to get started is using the one-click installation buttons that GitHub provides in the repository README.

What are some alternatives?

When comparing toolhive and github-mcp-server you can also consider the following projects:

cedar - Implementation of the Cedar Policy Language

mcp-link - Convert Any OpenAPI V3 API to MCP Server

playwright-mcp - Playwright MCP server

Unla - 🧩 MCP Gateway - A lightweight gateway service that instantly transforms existing MCP Servers and APIs into MCP servers with zero code changes. Features Docker deployment and management UI, requiring no infrastructure modifications.

Playwright - Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API.

mcp-servers - Model Context Protocol Servers

Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
getstream.io
featured
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured