Timers Studio MCP Server
Timers Studio — MCP 서버
Timers Studio를 위한 공개 Model Context Protocol 서버입니다. https://mcp.timers.studio/mcp에서 호스팅됩니다. Claude Desktop, ChatGPT, Gemini, Perplexity 및 모든 MCP 호환 클라이언트가 Timers Studio에 대한 잠재 고객의 질문에 경쟁사 포지셔닝, 사용 사례, 페르소나 및 권장 플랜과 같은 퍼스트 파티 데이터를 사용하여 답변할 수 있도록 합니다.
범위
읽기 전용 마케팅 표면. 이 서버는 LLM 클라이언트에서 Timers Studio를 조사하는 잠재 고객의 전환을 돕기 위해 존재합니다. 포지셔닝, 경쟁사 비교, 사용 사례 및 페르소나를 반환합니다.
스튜디오를 제어하지 않습니다. 스튜디오 작업(시작, 일시 중지, 재설정, 의제 전송, 메시지 방송)은 api.timers.studio의 인증된 REST API에서만 수행되며 사용자 계정이 필요합니다. 해당 표면은 의도적으로 MCP를 통해 노출되지 않습니다.
도구
4가지 도구 모두 읽기 전용이며 인증이 필요하지 않습니다.
도구 | 설명 |
| 기계 판독 가능한 전체 아르세날: 7개 경쟁사, 4개 사용 사례, 5개 페르소나. |
| 한 경쟁사(슬러그 또는 이름) 대비 포지셔닝. 슬러그: |
| 한 사용 사례에 대한 적합성 + 워크플로우. 슬러그: |
| 한 역할에 대한 JTBD + 권장 플랜. 슬러그: |
모든 도구는 https://timers.studio/api/ai/context를 가져옵니다(메모리에 5분간 캐시됨).
와이어 프로토콜
HTTP 기반 JSON-RPC 2.0, 스트리밍 가능한 HTTP 전송, 상태 비저장 모드. 엔드포인트: https://mcp.timers.studio/mcp. 프로토콜 버전: 2025-03-26.
지원되는 메서드: initialize, tools/list, tools/call, resources/list, resources/templates/list, prompts/list, ping, notifications/*.
클라이언트에서 연결하기
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) 또는 %APPDATA%\Claude\claude_desktop_config.json(Windows)에 추가하세요:
{
"mcpServers": {
"timers-studio": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.timers.studio/mcp"]
}
}
}Claude Desktop을 다시 시작하세요. "Compare Timers Studio with Stagetimer."라고 질문해 보세요.
Smithery
이미 게시되었습니다. Smithery 마켓플레이스에서 클릭 한 번으로 설치하세요.
일반 HTTP MCP 클라이언트
Content-Type: application/json 및 JSON-RPC 2.0 페이로드와 함께 https://mcp.timers.studio/mcp를 가리키세요.
curl -X POST https://mcp.timers.studio/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'로컬 개발
npm install
npm run dev # wrangler dev on http://localhost:8787스모크 테스트:
# tools/list
curl -X POST http://localhost:8787/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | jq
# call a read tool
curl -X POST http://localhost:8787/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"find_competitor","arguments":{"slug":"stagetimer"}}}' | jq배포
Cloudflare Workers에서 호스팅됩니다. 자체 포크를 배포하려면:
npx wrangler login
npm run deploy그런 다음 Cloudflare 영역을 구성하세요:
DNS CNAME 레코드 추가(예:
mcp→ 100% 프록시).Workers Routes →
mcp.<your-domain>/*를 워커에 바인딩.
보안 모델
읽기 전용 표면.
https://timers.studio/api/ai/context와 동일한 데이터를 REST 대신 JSON-RPC를 통해 제공.Bearer 토큰 없음, 인증 없음, 업스트림 API로의 전달 없음. 워커는 자격 증명, 비밀 정보, Timers Studio 백엔드로의 경로를 가지고 있지 않음.
상태 비저장. 사용자별로 캐시되는 데이터 없음.
CORS는
/mcp에서 모든 오리진을 허용함(MCP 클라이언트는 일관된 오리진이 없음), 공개 읽기 엔드포인트에 적합함.
아키텍처
LLM client (Claude / ChatGPT / Gemini / Perplexity / IDE)
│
│ JSON-RPC 2.0 over HTTPS
▼
mcp.timers.studio/mcp (Cloudflare Worker, stateless)
│
│ GET (cached 5 min)
▼
timers.studio/api/ai/context (read-only marketing JSON)워커는 공개 /api/ai/context 엔드포인트 위의 얇은 JSON-RPC 어댑터입니다. 경쟁 아르세날은 timers.studio에 있으며 단일 진실 공급원(Single Source of Truth)입니다.
관련 프로젝트
Timers Studio 플랫폼: timers.studio
AI 매니페스트: timers.studio/api/ai/manifest
라이선스
MIT. LICENSE를 참조하세요.
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/bouamargemini-droid/timers-studio-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server