MCPJungle MCP Server

<strong>Run all your MCP servers behind one endpoint</strong>

Remote serverstreamable-http

What is the MCPJungle MCP server?

Mcpjungle mcp server lets Claude, Cursor and other MCP clients work with MCPJungle directly. Run all your MCP servers behind one endpoint.

What MCPJungle does

Run all your MCP servers behind one endpoint

Key capabilities

  • 🔌 Every client needs its own MCP server configuration
  • 🧩 Tools, prompts, and resources are scattered across different servers
  • 🔐 Access control is duplicated or missing
  • 👥 Teams have no shared view of available MCP tools
  • 🛠️ Local setups become hard to reproduce
  • 🌐 One MCP endpoint for Claude, Cursor, Copilot, and custom agents
  • 🗂️ One place to register and manage MCP servers
  • 🔎 Unified discovery for tools, prompts, and resources

Tools it exposes

Once connected, the assistant can call these 4 tools directly:

Installing the mcpjungle mcp server

The server is distributed via a container image as ghcr.io/mcpjungle/mcpjungle, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 8 environment variables: API_TOKEN, SQLITE_DB_PATH, DATABASE_URL, POSTGRES_HOST, POSTGRES_PORT, POSTGRES_USER, POSTGRES_USER_FILE, POSTGRES_PASSWORD. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Database servers turn schema archaeology and ad-hoc reporting into conversation, which is why they tend to be the second or third server people install. MCPJungle sits in that group, and the shape of its toolset — Database, Claude, Cursor among others — tells you what it is really for. Worth comparing against the other databases servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This is a hosted server — you point your client at an endpoint rather than running a local process, so there is nothing to keep updated on your machine.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by mcpjungle.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcpjungle mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
DatabaseThe mcpjungle server relies on a database and by default, creates a SQLite DB file mcpjungle.db in the current working directory.
ClaudeThe Claude tool exposed by this server.
CursorYou can watch a quick video on [How to connect Cursor to MCPJungle](https://youtu.be/SaUqj-eLPnw).
CopilotFollow Copilot's doc on [configuraing a MCP server manually](https://docs.github.com/en/copilot/how-tos/provide-context/use-mcp/extend-copilot-chat-with-mcp#configuring-mcp-servers-manually-1).

How to install the MCPJungle MCP server

### Cursor
```json
{
  "mcpServers": {
    "mcpjungle": {
      "url": "http://localhost:8080/mcp"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
API_TOKENCredential the server authenticates with.Yes
SQLITE_DB_PATHFilesystem location the server is allowed to use.Optional
DATABASE_URLEndpoint or connection string the server talks to.Yes
POSTGRES_HOSTEndpoint or connection string the server talks to.Optional
POSTGRES_PORTConfiguration value read at startup.Optional
POSTGRES_USERConfiguration value read at startup.Optional
POSTGRES_USER_FILEConfiguration value read at startup.Optional
POSTGRES_PASSWORDConfiguration value read at startup.Optional

Example prompts to try

  • Use MCPJungle to Database.
  • Use MCPJungle to Claude.
  • Use MCPJungle to Cursor.

Frequently asked questions

It connects MCPJungle to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (Database, Claude, Cursor, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCPJungle directly.