Skip to main content
Glama
lanymo

Escape Room MCP Server

by lanymo
mcp.json3.7 kB
{ "tools": [ { "name": "getCurrentStatus", "description": "플레이어 상태와 현재 장면 정보를 조회합니다.", "endpoint": "https://mcp-server-cokt.onrender.com/tools/getCurrentStatus", "method": "GET", "inputSchema": {}, "outputSchema": { "scene": "string", "description": "string", "availableActions": ["string"] } }, { "name": "processAction", "description": "플레이어 행동을 처리하고 결과를 반환합니다.", "endpoint": "https://mcp-server-cokt.onrender.com/tools/processAction", "method": "POST", "inputSchema": {"action": "string", "choice": "string (선택지)"}, "outputSchema": { "result": "string", "stateChanges": "object", "nextScene": "string", "ending": "string (optional)" } }, { "name": "getPlayerStatus", "description": "현재 플레이어 상태를 반환합니다.", "endpoint": "https://mcp-server-cokt.onrender.com/tools/getPlayerStatus", "method": "GET", "inputSchema": {}, "outputSchema": { "scene": "string", "foundLantern": "boolean", "foundTalisman": "boolean", "ghostDefeated": "boolean" } } ], "scenes": { "mysterious_room": { "description": "나라를 어지럽히는 악귀에 의해 미지의 공간에 갇힌 당신. 주위를 살펴보거나 발자국을 옮길 수 있습니다.", "actions": { "주위를 살펴본다": { "choices": { "연다": {"stateChanges": {"foundLantern": true}, "nextScene": "lantern_scene"}, "무시하자": {"stateChanges": {}, "nextScene": "mysterious_room"} } }, "발자국을 옮긴다": {"nextScene": "ghost_appear"} } }, "lantern_scene": { "description": "청사초롱을 발견했다. 위에는 노란 부적이 붙어 있다.", "actions": { "부적을 조사한다": {"stateChanges": {"foundTalisman": true}, "nextScene": "ghost_appear"} } }, "ghost_appear": { "description": "악귀가 나타났다! 숨을 참거나 귀신의 특성을 확인할 수 있다.", "actions": {"숨을 참다": {"nextScene": "check_ghost"}} }, "check_ghost": { "description": "악귀는 목(木) 속성을 가졌다. 화(火) 속성을 사용하면 제압 가능.", "actions": { "처리한다": { "choices": { "왼쪽으로 날린다": { "conditions": {"foundLantern": true}, "stateChanges": {"ghostDefeated": true}, "ending": "bestEnding" }, "오른쪽으로 날린다": {"stateChanges": {}, "ending": "failEnding"}, "왼쪽으로 날린다": { "conditions": {"foundLantern": false}, "stateChanges": {"ghostDefeated": true}, "ending": "ending" } } } } } }, "initialState": { "scene": "mysterious_room", "foundLantern": false, "foundTalisman": false, "ghostDefeated": false }, "exampleDialogues": [ { "user": "주위를 살펴본다", "assistant": "수상한 항아리를 발견했다. 열기를 원하면 연다, 아니면 무시하자를 입력하세요." }, { "user": "연다", "assistant": "청사초롱을 발견했다. 위에는 노란 부적이 붙어 있다." }, { "user": "처리한다", "assistant": "악귀에게 화의 기운을 사용하여 퇴마를 시도합니다. 왼쪽으로 날릴까, 오른쪽으로 날릴까?" } ] }

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/lanymo/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server