mcp-manager: v1.2.0 — built-in chat agent (local LLM) + LLM env

This commit is contained in:
2026-05-29 09:10:57 -07:00
parent c31d42e3a2
commit 77b7bedf28
3 changed files with 10 additions and 5 deletions

View File

@@ -6,7 +6,7 @@
set -euo pipefail
IMAGE_NAME="${IMAGE_NAME:-git.alexzaw.dev/alexz/mcp-manager}"
IMAGE_TAG="${IMAGE_TAG:-1.1.0}"
IMAGE_TAG="${IMAGE_TAG:-1.2.0}"
SOURCE_REPO="${SOURCE_REPO:-https://git.alexzaw.dev/alexz/mcp-manager.git}"
WORKDIR="${WORKDIR:-/tmp/mcp-manager-build}"

View File

@@ -8,8 +8,8 @@
"port": 8501,
"categories": ["ai", "utilities"],
"description": "A control panel for your Model Context Protocol (MCP) servers. Add, edit, run and monitor stdio / SSE / HTTP servers, then export a ready-to-paste Claude configuration. stdio servers (npx- and uvx-based) are launched inside the container and exposed over HTTPS through the built-in SSE bridge. Node 20 and uv/uvx ship in the image, and every package cache is persisted to app-data so servers download once and survive restarts.",
"tipi_version": 2,
"version": "1.1.0",
"tipi_version": 3,
"version": "1.2.0",
"source": "https://git.alexzaw.dev/alexz/mcp-manager",
"website": "https://git.alexzaw.dev/alexz/mcp-manager",
"exposable": true,

View File

@@ -4,7 +4,7 @@
"services": [
{
"name": "mcp-manager",
"image": "git.alexzaw.dev/alexz/mcp-manager:1.1.0",
"image": "git.alexzaw.dev/alexz/mcp-manager:1.2.0",
"isMain": true,
"internalPort": 8001,
"dependsOn": {
@@ -19,7 +19,12 @@
{ "key": "JWT_SECRET", "value": "${JWT_SECRET}" },
{ "key": "ADMIN_EMAIL", "value": "${ADMIN_EMAIL}" },
{ "key": "ADMIN_PASSWORD", "value": "${ADMIN_PASSWORD}" },
{ "key": "FRONTEND_URL", "value": "${APP_PROTOCOL}://${APP_DOMAIN}" }
{ "key": "FRONTEND_URL", "value": "${APP_PROTOCOL}://${APP_DOMAIN}" },
{ "key": "AGENT_PROVIDER", "value": "ollama" },
{ "key": "OLLAMA_BASE_URL", "value": "http://192.168.0.32:11434/v1" },
{ "key": "OLLAMA_MODEL", "value": "gemma4:26b-tuned" },
{ "key": "OLLAMA_API_KEY", "value": "ollama" },
{ "key": "AGENT_CHAT_ENABLED", "value": "true" }
],
"volumes": [
{