MCPJungle: Self-Hosted MCP Gateway for AI Agents and Tool Management
This repository profile is provided by osrepos.com, an open source repository discovery platform.
Summary
MCPJungle is an open-source, self-hosted Model Context Protocol (MCP) Gateway designed for managing AI agents and their tool-calling capabilities. It allows developers and organizations to centralize the registration, discovery, and consumption of MCP servers and their tools, enhancing security and control over AI agent interactions.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
MCPJungle is an open-source, self-hosted Model Context Protocol (MCP) Gateway built in Go, designed to centralize the management of AI agents and their tool-calling capabilities. It acts as a unified gateway for your private AI agents, allowing you to register and manage various MCP servers and the tools they provide from a single, secure location. This enhances security, privacy, and access control for your AI agent interactions.
Installation
Getting started with MCPJungle is straightforward. You can quickly set up the server using Docker Compose or install the CLI tool directly.
To start the MCPJungle server locally with Docker Compose:
curl -O https://raw.githubusercontent.com/mcpjungle/MCPJungle/refs/heads/main/docker-compose.yaml
docker compose up -d
For managing MCPJungle from your local machine, install the CLI using Homebrew:
brew install mcpjungle/mcpjungle/mcpjungle
You can also pull the Docker image for the server:
docker pull ghcr.io/mcpjungle/mcpjungle
Examples
MCPJungle simplifies the process of integrating and managing tools for your AI agents. Here are a few examples:
Registering an MCP Server:
You can register a streamable HTTP-based MCP server, like context7, using the CLI:
mcpjungle register --name context7 --url https://mcp.context7.com/mcp
Connecting AI Clients:
Configure your AI clients, such as Claude or Cursor, to connect to MCPJungle. For Claude, you would add the following to your mcpServers configuration:
{
"mcpServers": {
"mcpjungle": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8080/mcp",
"--allow-http"
]
}
}
}
For Cursor, the configuration is even simpler:
{
"mcpServers": {
"mcpjungle": {
"url": "http://localhost:8080/mcp"
}
}
}
Once connected, your AI agents can discover and utilize the tools registered in MCPJungle.
Tool Groups for Granular Control: MCPJungle allows you to create Tool Groups, exposing only a specific subset of tools to your AI clients. This helps manage performance and provides granular access control. For example, to create a group with specific tools:
{
"name": "claude-tools",
"description": "This group only contains tools for Claude Desktop to use",
"included_tools": [
"filesystem__read_file",
"deepwiki__read_wiki_contents",
"time__get_current_time"
]
}
Then, create the group using the CLI:
mcpjungle create group -c ./claude-tools-group.json
Why Use MCPJungle
MCPJungle addresses critical needs for developers and organizations working with AI agents:
- For Developers using MCP Clients: It provides a central hub to access MCP servers for tool-calling, simplifying integration with clients like Claude and Cursor.
- For Developers Building Production-Grade AI Agents: It offers built-in security, privacy, and Access Control, essential for robust and reliable AI agent deployments.
- For Organizations: It enables centralized viewing and management of all MCP client-server interactions, hosted securely within their own datacenter, ensuring data governance and operational oversight.
Links
- GitHub Repository: https://github.com/mcpjungle/MCPJungle
- Model Context Protocol: https://modelcontextprotocol.io/introduction
- Discord Community: https://discord.gg/CapV4Z3krk
Related repositories
Similar repositories that may be relevant next.

goose: Your Native Open Source AI Agent for Code and Workflows
August 9, 2026
goose is an open source, extensible AI agent designed to run natively on your machine, offering capabilities beyond simple code suggestions. It supports installation, execution, editing, and testing with a wide range of Large Language Models. Built in Rust, goose provides a desktop app, CLI, and API, making it a versatile tool for various tasks from coding to data analysis.

Awesome AI Agents 2026: The Ultimate List of AI Tools and Frameworks
August 8, 2026
This repository, `awesome-ai-agents-2026`, is a comprehensive and frequently updated collection of over 340 AI agents, frameworks, and tools across more than 20 categories. It serves as an essential resource for developers and researchers looking to explore the rapidly evolving landscape of artificial intelligence in 2026, covering everything from coding agents to creative AI and governance.

Agent Sandbox: Managing Isolated, Stateful Workloads on Kubernetes
August 8, 2026
Agent Sandbox introduces a Sandbox Custom Resource Definition (CRD) and controller for Kubernetes, designed to simplify the management of isolated, stateful, singleton workloads. It provides a declarative API for use cases such as AI agent runtimes, development environments, and persistent single-container sessions. This project aims to offer a lightweight, single-container VM experience built on Kubernetes primitives.
awesome-ai: A Curated List of 400+ AI APIs, Tools, and Frameworks
August 7, 2026
The awesome-ai repository by edwardtay offers a comprehensive, curated list of over 400 AI APIs, tools, frameworks, and platforms. Spanning more than 40 categories, it serves as an invaluable resource for developers and researchers navigating the vast landscape of artificial intelligence. This list helps users discover solutions for LLMs, agents, image/video generation, MLOps, and more.
Source repository
Open the original repository on GitHub.
9 counted GitHub visits