@zuupee/mcp-server
Click on "Install 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityBmaintenanceA 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.Last updated
- FlicenseBqualityDmaintenanceA config-driven, zero-dependency MCP server with plugin architecture that enables filesystem operations, shell commands, HTTP requests, and utilities through simple JSON configuration.Last updated31
- AlicenseBqualityDmaintenanceA comprehensive MCP server with 30+ custom tools organized into categories: date/time operations, file management, system information, text processing, and web operations. Enables async communication with robust error handling and flexible CLI integration.Last updated311MIT
- Alicense-qualityDmaintenanceA self-contained, dependency-free MCP server that provides utility tools for time, date, mathematical calculations, and shell command execution. It supports remote connectivity through SSE and is designed for easy deployment via Docker.Last updatedGPL 3.0
Related MCP Connectors
MCP server for the Inistate platform: module discovery, entry management, and activity submission.
A basic MCP server to operate on the Postman API.
MCP server for generating rough-draft project plans from natural-language prompts.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mohsin-shaikh/chatbot-with-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server