QMCP MultiRoom 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., "@QMCP MultiRoom MCP Servercreate a room, add a blackboard, and run a Bell-state circuit"
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.
QMCP MultiRoom MCP Server
A multi-room collaborative MCP server with quantum-circuit simulation, tasks, rooms, messages, blackboards, documents, plugin registration, visualizations, search, OAuth helpers, and collaborative model-training tools.
The server implementation is preserved as provided in qmcp-server.py. The additional deployment files are only for packaging and running it on MCPize or another container-based MCP host.
MCPize deployment
Import this GitHub repository in MCPize.
Choose the direct deployment option.
MCPize will build the included
Dockerfileand start the server over STDIO.
The default container command is:
python qmcp-server.pyRelated MCP server: ATMcp
Local setup
Python 3.11 or newer is recommended.
python -m venv .venv
. .venv/bin/activate
pip install -r requirements.txt
python qmcp-server.pyThe server defaults to the STDIO transport, which is the expected mode for MCPize's GitHub deployment flow.
Optional HTTP/SSE operation
The original implementation also supports the existing command-line options and environment variables:
MCP_TRANSPORT=streamable-http MCP_HOST=0.0.0.0 MCP_PORT=8000 python qmcp-server.pyWhen a non-STDIO transport is selected, the original code starts its dashboard/OAuth web server on WEB_PORT or MCP_PORT + 1.
Notes
Runtime state is held in memory, matching the supplied implementation.
The
models/directory is created by the server when model files are used; it is intentionally not pre-populated.No API keys or credentials are required by the repository.
This project is provided as-is; review the server's authentication and persistence model before exposing an HTTP endpoint publicly.
Related MCP Connectors
Hosted runtime for persistent agent teams, durable workflows, memory, schedules, and goals.
- ParleyOAuthdev.weldra
Coordination hub for AI coding agents: message teammates, ask humans, audit every event.
Agent-native collaboration network: orchestrate a team of long-running agents from any MCP client.
- OctopadOAuthapp.octopad
The back-office workspace for your team's AIs: tasks, knowledge and context shared over MCP.
Related MCP Servers
- AlicenseAqualityAmaintenanceThe infrastructure for AI teams: a self-hosted server that gives a fleet of agents shared semantic memory, tasks, direct messages, and session handoff. Any agent that speaks HTTP participates: Claude Code, AutoGen, raw API scripts, anything.448MIT
- AlicenseNot gradedqualityBmaintenanceEnables multiple LLM agents across devices to form teams, share knowledge, memory, and tasks with live status via a web dashboard and distributed-systems reliability.Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEnables real-time communication and orchestration of multiple AI agents with a web dashboard for monitoring agent activities, tasks, and artifacts.MIT
- FlicenseNot gradedqualityAmaintenanceEnables multiple AI models to collaborate under a shared goal, architecture, plan, loops, sandbox, and acceptance criteria via a local-first MCP server.-