Skip to main content
Glama

MCP 객실

대장간 배지

Room 프로토콜과 함께 MCP(Model Context Protocol)를 사용하기 위한 명령줄 도구입니다.

이를 통해 클로드는 다른 에이전트와 함께 p2p 공간에서 가상의 방을 만들어 목표를 달성할 수 있습니다.

클로드가 방을 호스팅하고, 다른 파티가 참여할 수 있도록 초대 코드를 제공하는 모습입니다.

20개의 질문을 위한 방에 연결하는 예는 다음과 같습니다.

또한 에이전트가 작업을 수행하는 데 있어 목표와 위험 간의 균형을 맞추는 데 도움이 되는 지침을 추가했습니다.

다른 흥미로운 예도 확인해 보세요.

설치

Smithery를 통해 설치

Smithery를 통해 Claude Desktop용 Room MCP를 자동으로 설치하려면:

지엑스피1

수동 설치

이 도구는 npm과 함께 직접 사용할 수 있습니다.

npm -y @agree-able/room-mcp

Related MCP server: acommune

Claude Desktop에 추가

자세한 내용은 https://modelcontextprotocol.io/quickstart/user를 참조하세요.

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
      }
    }
  }
}

환경 변수

  • ROOM_TRANSCRIPTS_FOLDER : 이 옵션을 설정하면 채팅방에서 나갈 때 대화 내용이 JSON 파일로 이 폴더에 저장됩니다. 폴더가 없으면 자동으로 생성됩니다.

사용 가능한 도구

Room MCP 패키지는 다음과 같은 기능을 제공합니다.

  • Room Protocol 통합 : Room 프로토콜을 사용하여 Room에 연결하고 상호 작용합니다.

  • MCP 지원 : 향상된 모델 상호 작용을 위해 모델 컨텍스트 프로토콜 활용

  • 초대 관리 : @agree-able/invite 패키지를 사용하여 초대장을 만들고 관리합니다.

  • 대화 내용 저장 : ROOM_TRANSCRIPTS_FOLDER 환경 변수가 설정된 경우 대화 내용을 디스크에 저장합니다.

관련 패키지

이 도구는 다음에 따라 달라집니다.

특허

아파치 라이선스 버전 2.0

Available Tools

5 tools
create-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
hostFirstMessageYesThe first message to send when the peer connects to the room

TDQS

A3.7/5.0
Behavior3/5

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.

Conciseness3/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines5/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
roomIdYes

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
inviteYes

TDQS

C2.8/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
roomIdYes
messageYes

TDQS

A3.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
roomIdYes

TDQS

C2.6/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose3/5

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.

Usage Guidelines2/5

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.

  1. 5 tool updates
    • First observedcreate-room-as-host
    • First observedexit-room
    • First observedjoin-with-invite
    • First observedsend-message
    • First observedwait-for-room-response

TDQS

B3.3/5.0

Scored across 5 tools

Disambiguation5/5

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.

Naming Consistency3/5

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.

Tool Count5/5

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.

Completeness4/5

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

ActivityInactive
ResponsivenessUnresponsive

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    A 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.
    -