@zuupee/mcp-server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@zuupee/mcp-serverfetch httpbin.org/get"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Zuupee MCP
Monorepo for Zuupee's Model Context Protocol (MCP) tooling and website chatbot stack.
Packages
Package | Status | Description |
Available | General-purpose MCP server with pluggable modules, stdio and HTTP transports | |
In progress | Multi-server MCP client with namespaced tools | |
Available | Custom ReAct agent loop with OpenAI + MCP tools | |
Available | HTTP API + SSE for the website chatbot | |
Available | Embeddable chat UI (Vite → single JS bundle) | |
Available | Local JSON orders API for dev and tests |
Domain plugins live under mcp-server/plugins/ — see the orders plugin for a reference integration.
See docs/chatbot-implementation-plan.md for the full build plan.
Related MCP server: Modular MCP Server
Getting started
pnpm install
pnpm build
pnpm testMCP server
pnpm -C mcp-server devMCP client smoke test
pnpm -C mcp-client devMock API server
pnpm dev:mock-api-serverThen run mcp-server with MCP_MODULES=meta,orders and ORDERS_API_BASE_URL=http://127.0.0.1:3999.
Chat orchestrator (terminal demo)
Set OPENAI_API_KEY in .env, then:
# Terminal 1
pnpm dev:mock-api-server
# Terminal 2
MCP_SERVERS_CONFIG=./config/mcp-servers.chat.example.json \
pnpm dev:orchestrator -- "What is the status of order ord_123?"Chat API
Set OPENAI_API_KEY in .env.local, then:
# Terminal 1
pnpm dev:mock-api-server
# Terminal 2
pnpm dev:chatCreate a session and stream a reply:
SESSION=$(curl -s -X POST http://127.0.0.1:3200/chat/sessions | jq -r .sessionId)
curl -N -X POST "http://127.0.0.1:3200/chat/sessions/$SESSION/messages" \
-H "Content-Type: application/json" \
-d '{"content":"What is the status of order ord_123?"}'Copy .env.example to .env.local at the repo root and set OPENAI_API_KEY for orchestrator demos.
Chat widget
# Terminal 1
pnpm dev:mock-api-server
# Terminal 2
pnpm dev:chat
# Terminal 3
pnpm dev:widgetOpen http://localhost:5173 and use the chat button. The widget proxies API calls to chat-api via /api in dev.
Embed on any site:
<script
src="https://cdn.example.com/chat-widget.js"
data-api-url="https://chat.example.com"
data-theme="light"
></script>Docker Compose demo
Build the widget, then start the stack (reads OPENAI_API_KEY from .env.local):
pnpm -C chat-widget build
pnpm docker:chatOpen http://localhost:8080 for the widget and http://localhost:3200/health for API status.
Production hardening
Redis sessions: set
CHAT_REDIS_URL=redis://127.0.0.1:6379(Docker Compose includes Redis)OTEL traces: set
OTEL_ENABLED=trueand pointOTEL_EXPORTER_OTLP_ENDPOINTat your collectorPer-environment MCP config: set
CHAT_ENV=stagingorproduction(usesconfig/mcp-servers.<env>.json)Load test:
pnpm load-test:chat(targets p95 < 10s for session create)
See docs/e2e-manual-checklist.md for the full E2E checklist.
Repository layout
.
├── mcp-server/ # @zuupee/mcp-server
├── mcp-client/ # @zuupee/mcp-client
├── chat-orchestrator/ # @zuupee/chat-orchestrator
├── chat-api/ # @zuupee/chat-api
├── chat-widget/ # @zuupee/chat-widget
├── mock-api-server/ # @zuupee/mock-api-server
├── config/ # Shared MCP server config for local dev
└── docs/License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Read-only developer, date, finance, and text utilities. Authless remote MCP server by Clean.tools.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
MCP server for progressive tool usage at any scale (see https://klavis.ai)
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA unified MCP server with composable tools for GitHub operations, file management, shell execution, kanban boards, Discord messaging, and package management. Features role-based security, HTTP/stdio transports, and a web-based development UI.-
- FlicenseBqualityDmaintenanceA config-driven, zero-dependency MCP server with plugin architecture that enables filesystem operations, shell commands, HTTP requests, and utilities through simple JSON configuration.31-
- FlicenseNot gradedqualityCmaintenanceA production-ready MCP server providing file, system, math, and text utilities through a simple CLI client.-
- FlicenseBqualityBmaintenanceA production-ready MCP server offering text analysis tools, an in-memory key-value store, and system info resources with support for both stdio and HTTP transports.4-