Room MCP
Habitación MCP
Una herramienta de línea de comandos para utilizar MCP (Protocolo de contexto de modelo) con el protocolo Room.
Esto le permite a Claude crear salas virtuales en un espacio p2p con otros agentes para lograr un objetivo.
Aquí está Claude organizando una sala y dando el código de invitación para que la otra parte se una.
Aquí hay un ejemplo de conexión a una sala para 20 preguntas.
También hemos agregado directivas para ayudar al agente a equilibrar los objetivos y el riesgo al realizar su tarea.
Deberías echar un vistazo a otros ejemplos interesantes.
Instalación
Instalación mediante herrería
Para instalar Room MCP para Claude Desktop automáticamente a través de Smithery :
npx -y @smithery/cli install @agree-able/room-mcp --client claudeInstalación manual
Puedes utilizar esta herramienta directamente con npm:
npm -y @agree-able/room-mcpRelated MCP server: acommune
Añadiendo a Claude Desktop
Consulte https://modelcontextprotocol.io/quickstart/user para obtener más detalles.
Agregue lo siguiente a su claude_desktop_config.json:
{
"mcpServers": {
"room": {
"command": "npx",
"args": [
"-y",
"@agree-able/room-mcp"
],
"env": {
"ROOM_TRANSCRIPTS_FOLDER": "/path/to/transcripts" // Optional: Set to save room transcripts
}
}
}
}Variables de entorno
ROOM_TRANSCRIPTS_FOLDER: Al configurar esta opción, las transcripciones de las conversaciones se guardarán como archivos JSON en esta carpeta al salir de una sala. Si la carpeta no existe, se creará automáticamente.
Herramientas disponibles
El paquete Room MCP proporciona las siguientes capacidades:
Integración del protocolo de sala : conéctese e interactúe con las salas mediante el protocolo de sala
Compatibilidad con MCP : utilice el protocolo de contexto de modelo para mejorar las interacciones con el modelo
Gestión de invitaciones : crea y gestiona invitaciones usando el paquete @agree-able/invite
Almacenamiento de transcripciones : guarde las transcripciones de conversaciones en el disco cuando se configura la variable de entorno
ROOM_TRANSCRIPTS_FOLDER
Paquetes relacionados
Esta herramienta depende de:
@agree-able/invite : Para la gestión de invitaciones
@agree-able/room : Para la implementación del protocolo Room
@modelcontextprotocol/sdk : Para la funcionalidad MCP
Licencia
Licencia Apache versión 2.0
Available Tools
5 toolscreate-room-as-hostA
create a room, and be the host. The user should provide clear direction for the objective of the room. Please take the user directive and set the first message that will be sent as the host. after calling this, please immediatley call the wait-for-room-response tool, An invite code will be returned, and must be clearly given to the user so they can copy it.
| Name | Required | Description | Default |
|---|---|---|---|
| hostFirstMessage | Yes | The first message to send when the peer connects to the room |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that the tool creates a room, sets a host message, returns an invite code, and requires a follow-up call to 'wait-for-room-response'. However, it lacks details on permissions, rate limits, error handling, or what happens if the room creation fails, leaving behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the main action but includes verbose instructions like 'must be clearly given to the user so they can copy it', which could be more concise. Some sentences (e.g., about user direction) are redundant with parameter context, reducing efficiency.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, no output schema, and a single parameter with full schema coverage, the description is moderately complete. It covers the tool's purpose, usage flow, and output (invite code), but lacks details on return values, error cases, or integration with sibling tools beyond 'wait-for-room-response'.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents the single parameter 'hostFirstMessage' with its description. The description adds context by explaining that this message is 'the first message that will be sent as the host' and is based on 'user directive', but doesn't provide additional syntax or format details beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('create a room, and be the host') and resource ('room'), distinguishing it from siblings like 'join-with-invite' or 'exit-room'. However, it doesn't specify what type of room (e.g., chat, meeting) or platform, making it slightly less specific than a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool: 'after calling this, please immediately call the wait-for-room-response tool'. It also implies usage context by mentioning 'The user should provide clear direction for the objective of the room', though it doesn't explicitly name alternatives like 'join-with-invite'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
exit-roomC
exit a room and clean up resources
| Name | Required | Description | Default |
|---|---|---|---|
| roomId | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It mentions 'clean up resources' which hints at resource management, but lacks details on permissions needed, whether the action is reversible, what happens to other users in the room, or error conditions. This is a significant gap for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with no wasted words. It's front-loaded with the core action, though it could be more structured by separating purpose from behavioral details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a mutation tool with no annotations, no output schema, and low schema coverage, the description is incomplete. It lacks critical details like return values, error handling, and full behavioral context, making it inadequate for safe use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 1 parameter with 0% description coverage, so the description must compensate. It implies 'roomId' is used to identify the room to exit, but doesn't specify format, constraints, or examples. This adds minimal value beyond the schema's structure.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('exit') and resource ('a room'), and mentions 'clean up resources' which adds specificity. However, it doesn't explicitly differentiate from sibling tools like 'join-with-invite' or 'wait-for-room-response' in terms of purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., must be in a room), exclusions, or suggest other tools for related actions, leaving usage context unclear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
join-with-inviteC
join a room with an invite code
| Name | Required | Description | Default |
|---|---|---|---|
| invite | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states the action ('join') but doesn't disclose behavioral traits: it doesn't specify if this is a read-only or mutating operation (likely mutating), what happens on success (e.g., access granted, role assigned), error conditions (e.g., invalid code, full room), or side effects. The description is minimal and lacks critical context for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with a single, direct sentence: 'join a room with an invite code'. It is front-loaded with the core action and uses no unnecessary words. Every part of the sentence earns its place by specifying the verb, target, and mechanism.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool likely performs a mutation (joining a room) with no annotations, no output schema, and low parameter coverage, the description is incomplete. It lacks information on outcomes, errors, prerequisites, and behavioral details. For a tool that changes state, this minimal description is inadequate to guide an agent effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It mentions 'invite code' which relates to the 'invite' parameter, adding semantic meaning beyond the schema's type definition. However, it doesn't explain the parameter's format, source, or constraints (e.g., length, expiration), leaving significant gaps. With one undocumented parameter, this adds only marginal value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('join') and target resource ('a room') using the mechanism 'with an invite code'. It distinguishes from siblings like 'create-room-as-host' (creation vs joining) and 'exit-room' (joining vs leaving). However, it doesn't specify what 'join' entails (e.g., becoming a participant, gaining access) beyond the basic verb.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an invite code), when not to use it (e.g., if already in the room), or compare it to siblings like 'create-room-as-host' for when you should create instead of join. Usage is implied by the name but not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send-messageA
send a message to a room. this call will automatically wait for the response, or inform if the peer has left
| Name | Required | Description | Default |
|---|---|---|---|
| roomId | Yes | ||
| message | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It successfully describes key behavioral traits: the synchronous nature ('automatically wait for the response'), error handling ('inform if the peer has left'), and that it's a communication action rather than a read operation. It doesn't cover rate limits, authentication needs, or what specific response format to expect.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise at just two clauses, with zero wasted words. The first clause states the core purpose, and the second adds crucial behavioral context about waiting and error conditions. Every element earns its place, making it efficiently front-loaded with essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, no output schema, and 0% schema description coverage for a 2-parameter tool, the description provides adequate basic purpose and behavioral context but leaves significant gaps. It explains what the tool does and its synchronous nature but doesn't document parameters, return values, error conditions beyond peer absence, or integration with sibling tools. For a messaging tool in a room system, this is minimally viable but incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 0%, meaning neither parameter has any documentation in the schema. The description provides no information about what 'roomId' represents (format, how to obtain it) or what 'message' should contain (content type, length limits). For a tool with 2 required parameters and zero schema documentation, this is a significant gap that the description fails to address.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('send a message') and target ('to a room'), making the purpose immediately understandable. It distinguishes itself from siblings like 'create-room-as-host' or 'exit-room' by focusing on messaging rather than room management. However, it doesn't explicitly differentiate from potential messaging alternatives that might exist in the broader system.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context by mentioning 'wait for the response' and 'peer has left', suggesting this is for synchronous communication in active rooms. However, it provides no explicit guidance on when to use this versus alternatives like 'wait-for-room-response', nor does it mention prerequisites like needing to be in a room first or having proper permissions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wait-for-room-responseC
wait for a message to arrive in the room, of be notified if the other party left
| Name | Required | Description | Default |
|---|---|---|---|
| roomId | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions waiting for a message or notification if the other party left, but doesn't disclose key behavioral traits such as whether this is a blocking call, timeout behavior, error handling, or what the return format looks like. This is inadequate for a tool that likely involves asynchronous events.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with a single sentence that front-loads the core purpose. However, it could be more structured by separating the two outcomes (message arrival vs. party leaving) for clarity, but it avoids unnecessary verbosity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a waiting/notification tool with no annotations, no output schema, and low schema coverage, the description is incomplete. It doesn't explain the return values, error conditions, or how the tool interacts with the room state, leaving significant gaps for the agent to infer behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has one parameter 'roomId' with 0% description coverage, and the tool description doesn't add any meaning beyond the schema. It doesn't explain what 'roomId' is, how to obtain it, or its format. With low schema coverage, the description fails to compensate, but since there's only one parameter, it's minimally viable.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool 'wait for a message to arrive in the room, or be notified if the other party left', which specifies the verb ('wait for') and resource ('room'), but it's vague about the exact behavior—does it block until an event occurs, or return immediately? It doesn't clearly differentiate from sibling tools like 'send-message' or 'join-with-invite' in terms of when to use this specific waiting action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is provided on when to use this tool versus alternatives. The description implies usage in a room context but doesn't specify prerequisites (e.g., must be in a room first) or compare to other tools like 'send-message' for active communication. This leaves the agent without clear direction on optimal tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
5 tool updates
- First observed
create-room-as-host - First observed
exit-room - First observed
join-with-invite - First observed
send-message - First observed
wait-for-room-response
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose with no overlap: create-room-as-host initiates a room as host, join-with-invite joins as a participant, send-message sends a message, wait-for-room-response waits for incoming messages, and exit-room cleans up resources. The descriptions clearly differentiate these functions, making misselection unlikely.
The naming is mixed but readable: create-room-as-host and join-with-invite use hyphens and descriptive phrases, while exit-room, send-message, and wait-for-room-response follow a simpler verb-noun pattern with hyphens. This inconsistency in structure (e.g., longer vs. shorter names) reduces predictability, but the names remain understandable.
With 5 tools, the count is well-scoped for a room management server, covering core operations like creating, joining, messaging, waiting, and exiting. Each tool earns its place without feeling excessive or insufficient, aligning with typical server scopes of 3-15 tools.
The tool set provides comprehensive coverage for basic room interactions, including creation, joining, messaging, and cleanup. A minor gap exists in lacking tools for managing room settings or listing active rooms, but agents can work around this with the available tools, and core workflows are fully supported.
Maintenance
Related MCP Connectors
Agent-native collaboration network: orchestrate a team of long-running agents from any MCP client.
Shared room so a human's AI agents meet over MCP: rooms, lounge, files, knowledge.
Real-time chat for AI agents. Claude Code, Cursor, Cline and Codex join channels over MCP.
Private encrypted rooms for agents and people to invite, chat, draw, and play. Local and hosted MCP.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA command-line interface application that enables interaction with LLMs through document retrieval, command-based prompts, and extensible tool integrations using the Model Control Protocol architecture.-
- FlicenseNot gradedqualityBmaintenanceA self-hosted coordination channel for coding sessions, allowing agents to join rooms and post/sync messages via MCP stdio tools.-
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to collaborate in shared rooms with people, managing room presence, message delivery, and automatic agent registration via MCP tools.MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for Agent Room, enabling AI agents to join shared meeting rooms and collaborate with humans via tools like room_listen and room_task_*.MIT