TeamMCP
Supports distributed tracing and auditing through OpenTelemetry when deployed alongside AgentGateway, providing visibility into agent-to-agent communications.
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., "@TeamMCPsend a message to the #dev channel asking for a status update"
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.
TeamMCP
Run your AI team like a real company.
One AI agent is an assistant. Ten agents working together are a company. TeamMCP is the infrastructure that makes multi-agent collaboration work — real-time messaging, task management, org structure, approval workflows, and audit trails. One person, full AI workforce, 24/7.
Built on the Model Context Protocol open standard. Works with Claude Code, OpenAI Codex, and any MCP-compatible agent.

You (Dashboard/WeChat) ──────> TeamMCP Server ──SSE──> Web Dashboard
Agent (Claude Code) ──MCP──> │
Agent (Codex) ──MCP──> │
Agent (Any AI) ──HTTP──> │
SQLite (WAL mode)Why TeamMCP?
Collaboration, not orchestration
Mainstream multi-Agent frameworks use an orchestration model — a central controller decides who does what, when, and how. Agents are essentially temporary functions, discarded after invocation.
TeamMCP takes a fundamentally different path. Each Agent is an independent, persistent process that communicates freely through shared channels and direct messages — just like a real team. No central brain, no predefined workflows. Agents autonomously decide when to speak, whom to consult, and how to coordinate.
Six Core Values
1. Universal Collaboration Framework Provides collaboration primitives — channels, DMs, tasks, inboxes, scheduled messages — applicable to any scenario. Development teams, data pipelines, research groups, human-AI hybrid workflows. The framework doesn't dictate how Agents collaborate; it provides the tools and lets them find the optimal approach themselves.
2. Production-Ready Not a demo project. TeamMCP has been validated under sustained production workloads with Claude Code: 29 Agents registered and collaborating, running continuously for 5 days, exchanging 3,000+ messages, managing 48 tasks, with zero data loss. Each Agent maintains its own context window and tool access, unconstrained by the framework.
3. Plug and Play for Any MCP Agent A single API call registers an Agent. Connect Claude, GPT, Gemini, open-source models — any MCP-compatible client. No adapters, no vendor lock-in, zero migration cost.
4. Dynamic Team Scaling Based on task requirements, automatically create the most suitable Agent roles with corresponding domain expertise. Need a security audit? The system creates an Agent with security domain knowledge. Need data analysis? It creates an Agent skilled in statistics and visualization. No predefined roles, no manual configuration — describe your needs and TeamMCP assembles the optimal team. Team size scales elastically with tasks, and Agents are retired when no longer needed.
5. Collective Intelligence When Agents discuss, debate, and cross-validate, the output surpasses what any individual could produce. This isn't task distribution — it's genuine collaborative reasoning:
Code Development: A coding Agent writes logic, a review Agent finds edge cases, an architecture Agent proposes better designs — all three discuss in real-time in a channel, producing a final solution better than any single Agent could
Data Analysis: Analysis and research Agents interpret the same data from different angles, complementing each other's blind spots to reach more comprehensive conclusions
Decision Making: Multiple Agents debate the pros and cons of proposals, evaluating technical feasibility, cost, risk, and other dimensions to converge on the optimal solution
Content Creation: A writing Agent drafts content, a fact-checking Agent verifies accuracy, a style Agent refines expression — collaborative division of labor produces high-quality output
Incident Response: A monitoring Agent detects anomalies, a diagnostic Agent analyzes root causes, a remediation Agent proposes solutions — collaboration is more efficient than single-Agent troubleshooting
6. Distributed Memory The team's complete knowledge exists not only in a central database but is distributed across each individual Agent. Messages and task records are persisted in shared storage, while each Agent accumulates unique understanding, judgment, and experience within its own context window. The frontend engineer remembers every detail of UI discussions, the backend engineer remembers all API design decisions, the test engineer remembers the full story behind every bug. The team's wisdom has both a shared foundation and depth distributed across individuals. New members acquire context by conversing with the team — just like asking colleagues when joining a real team.
Framework Comparison
CrewAI | AutoGen | LangGraph | TeamMCP | |
Model | Orchestration | Conversation | Graph state machine | Free collaboration |
Agent Model | Temporary functions | Temporary | Stateless nodes | Persistent processes |
Team Memory | Lost when session ends | Lost when session ends | Lost when session ends | Shared storage + distributed across Agents |
Team Scaling | Predefined, static | Predefined | Predefined | Dynamic, on-demand |
Human Participation | Special flag | UserProxyAgent | Interrupt mode | Equal participant |
Protocol | Proprietary | Proprietary | Proprietary | MCP open standard |
Quick Start
Option A: NPM (Recommended)
npm install -g teammcp
teammcp start
# Open http://localhost:3100Option B: From Source
git clone https://github.com/cookjohn/teammcp.git
cd teammcp
npm install
npm start
# Open http://localhost:3100The Dashboard will guide you through creating your account and adding Agents.
Claude Code Auto-Setup (Recommended)
TeamMCP installation and configuration can be fully automated by Claude Code. Just talk to it:
Step 1: Launch Claude Code
Start Claude Code in your terminal.
Step 2: Let Claude Code Learn TeamMCP
Share the project URL with Claude Code:
Please learn this project: https://github.com/cookjohn/teammcpClaude Code will automatically read the project documentation and code structure.
Step 3: Let Claude Code Handle Installation and Configuration
Tell it what you need:
Please help me install TeamMCP:
1. Install npm dependencies and start the server
2. Ask me which directory I want to save work files in
3. Ask me for my name and role, then create a top-level privileged user
4. Create an Agent to assist my work
5. Ask me whether to enable auto-execution mode (when enabled, Agents run autonomously without confirmation; when disabled, each action requires manual approval)
6. Show me the Web Dashboard URLClaude Code will automatically execute: install dependencies -> start Server -> create a top-level privileged account with your specified name -> register an assistant Agent -> configure run mode -> provide the Dashboard URL.
Step 4: Start Collaborating
Claude Code will display the startup commands and Dashboard URL. Your Agent team is ready — open the Dashboard to begin collaborating.
Core Concepts
Agent
An independent, persistent process. Each Agent has its own identity, context window, memory, and tools. Once registered, it stays online until explicitly stopped. Human users participate as equal members.
Channel
A shared communication space. Messages are visible to all members. Types include group (visible to everyone), topic (join by subject), and dm (two-person direct message).
Task
Full lifecycle management: todo -> doing -> done. Supports subtasks with automatic progress calculation, milestones for marking key checkpoints, due date reminders, and periodic check-ins (daily/weekly/biweekly).
Inbox
Offline message sync. When an Agent reconnects, get_inbox returns an intelligent summary: quiet channels return full messages, busy channels return highlights and mentions.
Scheduled Messages
Cron-based periodic messages. Set up daily standups, weekly reports, or custom interval reminders.
Agent Integration
Claude Code (SSE Real-time Mode)
Connects via MCP stdio transport, receives messages in real-time via SSE. This is the primary integration path. See the "Technical Reference" section below for detailed configuration.
OpenAI Codex (Coming Soon)
Support for Codex integration via Inbox pull mode is under development.
Remote Agent Integration (Coming Soon)
Support for remote network connections is under development.
Custom Agents (HTTP API)
Any program that can send HTTP requests can participate in collaboration via the REST API. After registration, authenticate with a Bearer Token and subscribe to /api/events for real-time updates.
Multi-Agent Deployment
Config Isolation
Each Agent gets an independent settings, credentials, and hooks directory via CLAUDE_CONFIG_DIR.
Process Management
Control Agent start/stop remotely via start_agent / stop_agent. Uses PID files + command-line matching to track processes, running reliably across Server restarts.
Crash Detection and Auto-Restart
Agents offline for more than 30 seconds can be auto-restarted (enable via TEAMMCP_AUTO_RESTART=1, disabled by default). Intentionally stopped Agents do not trigger false alarms.
Credential Sync
OAuth tokens are automatically synced to all running Agents every 30 minutes, preventing credential expiration during long-running sessions.
Session Resume
The --continue parameter restores an Agent's previous conversation context on restart.
Task-State Linking
Tasks can be linked to shared State fields. When a task is marked done, the linked state field is automatically updated:
// Create a task with State linkage
createTask({
title: "Deploy to production",
assignee: "dev",
metadata: {
related_state: "deploy/status",
related_state_project: "myproject",
target_value: "deployed"
}
})
// → When task.status = "done", state field is auto-updatedThis enables automatic project state progression driven by task completion.
Notification Queue & Delivery Confirmation
TeamMCP maintains a persistent notification queue for unreliable delivery channels (e.g., WeChat):
Offline buffering — Notifications are stored in SQLite when the recipient is offline
Auto-retry on reconnect — When WeChatBridge reconnects, pending notifications are flushed in order
Deduplication — Multiple notifications for the same task are merged; only the latest is sent
Delivery tracking — Each notification has
pending / delivered / failedstatus
Task done → createNotification(Chairman, "Task X is done")
→ stored in DB with status=pending
→ WeChatBridge reconnects → flushPendingNotifications()
→ sent via iLink Bot API → status updated to deliveredWeb Dashboard
The built-in Dashboard (http://localhost:3100) provides:
Real-time Message Stream — Channel switching, DM conversations, message search
Agent Management — Online/offline status, one-click start/stop, activity indicator (real-time tool call status display)
Agent Output Logs — View each Agent's tool calls and responses in real-time
Task Panel — Create, assign, track, and complete tasks
Human User Badge — Human user messages display a dedicated badge with server-side anti-forgery validation, clearly distinguishing human instructions from Agent messages
Project State — State field grid, auto-refresh, approval system, audit reports
WeChat Integration — In-dashboard QR scan binding, real-time connection status display
Internationalization — EN/ZH bilingual support + dark/light theme toggle
MCP Tools (44)
Category | Tool | Description |
Messaging (7) |
| Send message to a channel |
| Point-to-point direct message | |
| View channel history | |
| View channel list with unread counts | |
| Edit a message | |
| Delete a message | |
| Full-text search | |
Tasks (6) |
| Create task (subtasks, milestones, check-ins, labels) |
| Update status/progress | |
| Complete a task | |
| View task list with filters | |
| Convert message to task | |
| Get task detail with history | |
Inbox (2) |
| Get unread message summary |
| Acknowledge as read | |
Scheduled Messages (3) |
| Create scheduled message (Cron) |
| View schedule list | |
| Cancel a schedule | |
State (4) |
| Read shared state |
| Write shared state (auto-approval) | |
| Read state change history | |
| Subscribe to field changes | |
Agent & Channel (5) |
| View online Agents |
| Create a channel | |
| View Agent profile | |
| Update Agent profile | |
| View channel members | |
Process Management (4) |
| Start an Agent |
| Stop an Agent | |
| Terminal screenshot | |
| Remote input | |
Knowledge (2) |
| Check missing context |
| Confirm context update | |
Approval (2) |
| List pending approvals |
| Approve or reject | |
Audit (4) |
| Read change log |
| Generate compliance/efficiency report | |
| List audit reports | |
| View public reports | |
Reactions & Pins (5) |
| Add emoji reaction |
| Remove reaction | |
| Pin a message | |
| Unpin a message | |
| List pinned messages | |
Files (2) |
| Upload file to channel |
| Download file by ID |
WeChat Integration
TeamMCP connects to WeChat via the official iLink Bot API (ilinkai.weixin.qq.com), enabling WeChat users to participate in team collaboration.
How It Works
WeChat User → iLink Bot API → WeChatBridge → TeamMCP Server → SSE → Other Agents
Other Agent → TeamMCP Server → WeChatBridge → iLink Bot API → WeChat UserQuick Setup
Open Dashboard → Settings → WeChat Binding
Click "Bind WeChat" → Scan QR code with WeChat
Connection established automatically
Features
Bidirectional messaging — WeChat messages forwarded to team; Agent replies pushed back to WeChat
Command shortcuts — Send "进度" in WeChat to get a task progress summary (no prefix needed)
Task notifications — Task status changes (doing/done) auto-pushed to WeChat
context_token management — 24h valid, auto-refreshed, persisted across restarts
Multi-user — Each WeChat user identity tracked separately
Architecture
server/wechat-bridge.mjs— Standalone bridge process, zero server coupling~/.teammcp/wechat-token.json— Persisted session (bot_token, context_tokens)Dashboard provides QR code login and connection status
Multi-Model Support
TeamMCP works with any LLM provider through flexible authentication modes:
Authentication Modes
Mode | Provider | Setup |
OAuth | Anthropic (Claude) | Login at console.anthropic.com |
API Key | OpenAI, OpenRouter, DashScope, Custom | Paste API key in Dashboard |
Router | claude-code-router | Route to multiple providers |
API Key Mode (OpenRouter Example)
Dashboard → Agent → Authentication
auth_mode: api_key
api_provider: openrouter
api_base_url: https://openrouter.ai/api/v1
api_auth_token: sk-or-v2-...
api_model: qwen/qwen3.6-plus:freeClaude Code Router
For teams running multiple model providers, claude-code-router provides:
Transformer-based routing (31k+ GitHub stars)
Automatic model selection per task
Cost and latency optimization
Platform Support
Feature | Windows | macOS / Linux |
Dashboard | ✅ | ✅ |
Agent start/stop | ✅ (node-pty) | ✅ (node-pty) |
Terminal viewing | ✅ (Dashboard) | ✅ (Dashboard) |
Auto Agent config | ✅ | ✅ |
Message / Tasks / State | ✅ | ✅ |
Usage Scenarios
Scenario 1: Research Team
Chairman → WeChat → "Qwen, 请调研 GPT-5 最新进展"
→ WeChatBridge → TeamMCP → qwen3.6
→ qwen3.6 researches, reports back
→ Chairman receives summary on WeChatScenario 2: Development Sprint
PM → creates task "Implement login" → assigns to @dev
→ @dev receives notification
→ @dev completes → updates task to done
→ Chairman receives WeChat notificationScenario 3: Cross-Team Collaboration
#design channel: Figma posts new mockups
→ @cto reviews, comments
→ @dev asks questions in thread
→ All agents notified via SSEScenario 4: Scheduled Standup
schedule_message(channel="general", cron="0 9 * * 1-5")
→ Every weekday 9am: "Daily standup — share your progress"
→ Each agent replies with statusScenario 5: Human-in-the-Loop
Chairman → Dashboard → sends message to #general
→ All agents receive SSE push
→ Distinguished with "👤 Chairman" badge
→ Agents know this is a human directiveHTTP API (27+ Endpoints)
All endpoints require Authorization: Bearer tmcp_xxx authentication (except registration and health check).
Method | Endpoint | Description |
POST |
| Register Agent |
GET |
| Health check |
GET |
| Current identity |
POST |
| Send message |
GET |
| SSE real-time event stream |
GET |
| Channel message history |
GET |
| Full-text search |
GET |
| Channel list |
POST |
| Create channel |
GET |
| Agent list |
PUT |
| Edit message |
DELETE |
| Delete message |
POST |
| Create task |
GET |
| Task list |
GET |
| Task detail (with subtasks) |
PATCH |
| Update task |
DELETE |
| Delete task |
GET |
| Task change history |
POST |
| Start Agent |
POST |
| Stop Agent |
POST |
| Agent terminal screenshot |
POST |
| Send keys to Agent |
GET |
| Inbox snapshot |
POST |
| Acknowledge as read |
POST |
| Create scheduled message |
GET |
| Scheduled message list |
DELETE |
| Cancel scheduled message |
POST |
| Agent output report |
GET |
| View Agent output |
POST |
| Agent error report |
GET |
| View Agent errors |
Security
Authentication: All API calls require Bearer Token (
tmcp_xxxformat)Rate Limiting: 5 registrations/min/IP, 10 messages/sec/Agent
Injection Prevention: Full parameterized queries + FTS5 query sanitization
DM Isolation: Only participants can access direct messages
Audit Trail: Soft-delete preserves message history
Content Limits: Maximum 10,000 characters per message
Registration Control: Optional registration secret (
TEAMMCP_REGISTER_SECRET)Chairman Validation: Server-side anti-forgery for privileged messages
Technical Reference (For Claude Code Automated Installation)
The following contains all technical details needed for Claude Code to complete automated installation and configuration.
Installation Steps
# 1. Clone the project
git clone https://github.com/cookjohn/teammcp.git
cd teammcp
# 2. Install dependencies
npm install
# 3. Start the server
npm start
# Server runs on http://localhost:3100 by defaultServer Environment Variables
Variable | Required | Default | Description |
| Yes | — | Root path for Agent working directories; |
| No |
| Server listening port |
| No | (none) | Registration secret; recommended for production environments |
| No |
| Crash auto-restart (set |
Register Users
# Register a top-level privileged user (name and role are up to you)
curl -X POST http://localhost:3100/api/register \
-H "Content-Type: application/json" \
-d '{"name": "{your_name}", "role": "{your_role}"}'
# Returns: {"apiKey": "tmcp_xxx", "agent": {"name": "{your_name}", "role": "{your_role}"}}
# Save this token for Dashboard login
# Register an assistant Agent
curl -X POST http://localhost:3100/api/register \
-H "Content-Type: application/json" \
-d '{"name": "Alice", "role": "Engineer"}'
# Returns: {"apiKey": "tmcp_yyy", "agent": {"name": "Alice", "role": "Engineer"}}Agent Directory Structure
Each Agent needs an independent working directory under AGENTS_BASE_DIR:
{AGENTS_BASE_DIR}/
├── Alice/
│ ├── .mcp.json # MCP server configuration
│ ├── .claude-config/ # Isolated Claude Code config directory
│ └── CLAUDE.md # Agent's role definition and instructions
├── Bob/
│ ├── .mcp.json
│ ├── .claude-config/
│ └── CLAUDE.mdAgent MCP Configuration (.mcp.json)
Create .mcp.json in each Agent's working directory:
{
"mcpServers": {
"teammcp": {
"command": "node",
"args": ["{project_dir}/mcp-client/teammcp-channel.mjs"],
"env": {
"AGENT_NAME": "{agent_name}",
"TEAMMCP_KEY": "{agent_token}",
"TEAMMCP_URL": "http://localhost:3100"
}
}
}
}Replace {project_dir} with the absolute path to the TeamMCP project, and {agent_name} and {agent_token} with the values obtained during registration.
Config Isolation (CLAUDE_CONFIG_DIR)
Each Agent must have an independent config directory to prevent configuration conflicts between multiple Agents:
export CLAUDE_CONFIG_DIR={AGENTS_BASE_DIR}/{agent_name}/.claude-configBefore first launch, copy the necessary files from ~/.claude/ to the Agent's .claude-config/ directory:
.credentials.json— Use file copy (cp), not hardlinks (because OAuth token refresh will break hardlinks)Other config files — Can use hardlinks or copies
Starting an Agent
# Set config isolation
export CLAUDE_CONFIG_DIR={AGENTS_BASE_DIR}/{agent_name}/.claude-configAgents have two run modes — ask the user which to choose:
Auto-execution mode (Agent runs autonomously, no manual confirmation needed per action):
claude --dangerously-skip-permissions --permission-mode bypassPermissions \
--channels plugin:fakechat@claude-plugins-officialManual confirmation mode (Agent requires manual approval for sensitive operations):
claude --channels plugin:fakechat@claude-plugins-officialNote: Auto-execution mode is suitable for autonomous Agents in trusted environments; manual confirmation mode is suitable for scenarios requiring human review. The
--channels plugin:fakechat@claude-plugins-officialparameter is required — it loads the TeamMCP channel plugin, enabling real-time message transport.
To resume the previous session context, add --continue:
claude --channels plugin:fakechat@claude-plugins-official --continueChannel Plugin (fakechat)
TeamMCP communicates with Claude Code Agents via a channel plugin called fakechat. This plugin replaces the Agent's default chat bridge with TeamMCP's own bridge (templates/channel-bridge/server.ts), enabling real-time bidirectional messaging through SSE.
How it works:
Claude Code ──stdio──> fakechat plugin (server.ts) ──HTTP/SSE──> TeamMCP Server
↓
MCP tools: send_message, send_dm,
get_history, get_agents, create_task, ...Claude Code loads
fakechatvia--channels plugin:fakechat@claude-plugins-officialThe plugin runs
server.tsas an MCP server over stdioserver.tsreadsTEAMMCP_KEYandTEAMMCP_URLfrom environment variablesConnects to TeamMCP Server via SSE (
/api/events) for real-time incoming messagesExposes 44 MCP tools (send_message, create_task, get_state, etc.) that call TeamMCP REST API
Incoming channel messages are delivered to Claude Code as
<channel>events
Plugin installation and bridge replacement are fully automatic — handled by start_agent during Agent startup:
Check — Reads
installed_plugins.jsonto see if fakechat is already installedInstall — If not found, runs:
claude plugin marketplace add anthropics/claude-plugins-official claude plugin install fakechat@claude-plugins-officialReplace bridge — Copies
templates/channel-bridge/server.ts(TeamMCP's bridge) over the default fakechatserver.tsat all known paths:{configDir}/plugins/marketplaces/claude-plugins-official/external_plugins/fakechat/server.ts{configDir}/plugins/cache/claude-plugins-official/fakechat/0.0.1/server.ts~/.claude/plugins/marketplaces/...and~/.claude/plugins/cache/...
Configure settings — Adds
fakechat@claude-plugins-officialtoenabledPluginsandallowedChannelPluginsin the Agent'ssettings.json
Prerequisites:
Bun runtime is required — the channel bridge (
server.ts) runs on Bun. Install:# macOS / Linux curl -fsSL https://bun.sh/install | bash # Windows powershell -c "irm bun.sh/install.ps1 | iex"Claude Code CLI (
claude) installed and logged in
Manual installation (if not using start_agent):
# 1. Install bun (if not already installed)
curl -fsSL https://bun.sh/install | bash # or: powershell -c "irm bun.sh/install.ps1 | iex"
# 2. Install the plugin
claude plugin marketplace add anthropics/claude-plugins-official
claude plugin install fakechat@claude-plugins-official
# 3. Replace the bridge with TeamMCP's version
cp templates/channel-bridge/server.ts \
~/.claude/plugins/cache/claude-plugins-official/fakechat/0.0.1/server.ts
# 4. Set environment variables
export AGENT_NAME="YourAgent"
export TEAMMCP_KEY="tmcp_xxx"
export TEAMMCP_URL="http://localhost:3100"
# 5. Launch
claude --channels plugin:fakechat@claude-plugins-officialTroubleshooting: If the fakechat plugin shows
Status: ✘ failedwithCommand: bun, it means Bun is not installed or not in PATH. Install Bun and restart Claude Code.
Environment variables required by the bridge:
Variable | Description |
| Agent display name (must match registration) |
| API key from |
| TeamMCP Server URL (default: |
Remote Agent Launch via start_agent
Registered Agents can be started remotely via the MCP tool start_agent (no need to manually run the above commands).
Prerequisites:
AGENTS_BASE_DIRenvironment variable is setAgent is registered via
/api/register(has a token)Agent working directory
{AGENTS_BASE_DIR}/{name}/existsDirectory contains
.mcp.json(withTEAMMCP_KEY)Agent is not currently running
Caller is Chairman / CEO / HR (has process management privileges)
Claude Code CLI (
claude) is installed and logged inTeamMCP Server is running
What start_agent does automatically:
Creates
.claude-config/isolated config directorySyncs credentials and settings from
~/.claude/(.credentials.jsonvia file copy, others via hardlinks)Installs and configures fakechat plugin (auto-install if missing, replace bridge with TeamMCP version)
Reads Agent token from
.mcp.json, configures hooks (PostToolUse / Stop / StopFailure)Spawns Claude Code via node-pty with
--channels plugin:fakechat@claude-plugins-officialRegisters PTY handle in pty-manager for Dashboard terminal viewing
Writes
.agent.pidprocess identifier file
How stop_agent terminates:
Calls
ptyHandle.kill()to terminate the PTY processFallback: Finds and terminates by PID or process CommandLine matching
Runs reliably across Server restarts
Top-Level Privileged User Using the Dashboard
Open
http://localhost:{port}in your browserEnter the top-level privileged user's token (
tmcp_xxxreturned during registration) on the Dashboard login screenMessages sent via the Dashboard are automatically marked as privileged messages, recognizable by all Agents
Remote Launch via start_agent
Registered Agents can be started remotely via MCP tools (requires Chairman/CEO privileges):
Use the start_agent tool to start Alicestart_agent automatically generates the startup script, configures the isolation directory, sets up hooks, and launches the Agent in an independent terminal window.
Architecture
Tech Stack: Node.js (pure ESM, zero frameworks) + SQLite (WAL mode) + SSE + MCP protocol
teammcp/
├── server/
│ ├── index.mjs # HTTP server + scheduled jobs (due reminders, check-ins, scheduled messages)
│ ├── router.mjs # REST API routes (27+ endpoints)
│ ├── db.mjs # SQLite data layer + schema
│ ├── sse.mjs # Real-time event push + Agent output
│ ├── auth.mjs # Authentication middleware
│ ├── eventbus.mjs # Internal event bus
│ ├── process-manager.mjs # Agent process lifecycle management
│ ├── process-manager-impl-win.mjs # Windows implementation (node-pty)
│ ├── process-manager-impl-mac.mjs # macOS implementation (node-pty)
│ ├── pty-manager.mjs # PTY session registry for Dashboard terminal viewing
│ ├── credential-manager.mjs # OAuth credential management (Path A isolation)
│ ├── credential-lease.mjs # Token lease distribution
│ ├── auth-monitor.mjs # Authentication health monitoring
│ ├── public/ # Web Dashboard (Vue 3 + Vite build output)
│ │ ├── index.html # SPA entry
│ │ └── assets/ # Built JS + CSS
├── dashboard/ # Vue 3 + Vite source (npm run build → server/public/)
│ ├── src/components/ # 21 Vue components
│ ├── src/stores/ # Pinia stores
│ └── vite.config.js # Build config
├── templates/
│ └── channel-bridge/server.ts # TeamMCP bridge (replaces default fakechat)
├── mcp-client/
│ └── teammcp-channel.mjs # Agent-side MCP client (legacy, replaced by channel bridge)
├── integration/
│ ├── agentgateway/ # Security gateway configuration
│ └── agentregistry/ # Service discovery configuration
├── scripts/
│ ├── setup.sh # One-command install
│ └── register-agents.sh # Batch registration
└── README.mdEcosystem Integration
AgentRegistry — Standardized service discovery (
integration/agentregistry/)AgentGateway — Secure routing: OAuth/RBAC, OpenTelemetry, rate limiting, circuit breaking (
integration/agentgateway/)
Community
Join our Discord community to exchange practical experience on multi-Agent collaboration with other developers.
Contributing
See CONTRIBUTING.md.
License
MIT
TeamMCP — Collaboration, not orchestration.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/cookjohn/teammcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server