T
Team Manager
MongoDB-native MCP control plane for multi-agent orchestration with planning, routing, memory, and audit trails.
Share:
About
MongoDB-native MCP control plane for multi-agent orchestration with planning, routing, memory, and audit trails.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Team Manager.
- What is Team Manager and what are its primary functions?
- Team Manager is a MongoDB-native Model Context Protocol (MCP) control plane. It provides capabilities for multi-agent orchestration, including planning, routing, memory management, and audit trail functionality.
- How can I deploy Team Manager with a popular MCP client like Cursor?
- Team Manager uses the 'stdio' transport. To deploy, configure your client to connect via standard input/output streams. Refer to your specific client's documentation for details on integrating stdio-based MCPs.
- Does Team Manager require any API keys or authentication credentials?
- No, the Team Manager MCP is configured with 'none' as its authentication type. This means it does not require API keys, OAuth, or other external credentials to operate.
- What core capabilities does Team Manager offer for multi-agent systems?
- Team Manager provides core capabilities such as orchestrating multiple agents, managing their planning and routing logic, maintaining conversational memory, and recording audit trails for agent interactions.
- Is Team Manager free to use, and what are its licensing terms?
- Team Manager's licensing depends on the terms specified in its GitHub repository. As it is self-hosted and MongoDB-native, operational costs would primarily relate to your MongoDB deployment and infrastructure.
- What is a key prerequisite for running Team Manager effectively?
- A key prerequisite for Team Manager is a functional MongoDB environment, as it is designed as a MongoDB-native control plane. Performance and reliability will depend on your MongoDB configuration.
Install Team Manager
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"team-manager": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-team-manager"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"team-manager": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-team-manager"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"team-manager": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-team-manager"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.