Skip to main content
Glama

mcp-think

Cloudflare Workers용으로 구축된 구조화된 순차적 사고를 위한 원격 MCP 서버입니다.

아키텍처

  • Cloudflare Worker는 Streamable HTTP를 통해 /mcp를 노출합니다.

  • MCP SDK v2가 도구를 정의합니다.

  • Durable Objects + SQLite가 각 시퀀스를 영속화합니다.

  • 시퀀스는 명시적인 sequenceId로 주소가 지정되며, MCP 프로토콜 세션은 애플리케이션 상태를 전달하지 않습니다.

이 설계는 현재 Cloudflare 지침을 따릅니다. 새 MCP 서버는 v2/stateless 핸들러를 사용하고, 다단계 워크플로우의 애플리케이션 상태는 명시적인 Durable Object 경계 뒤에 있습니다. McpAgent는 더 이상 사용되지 않으며 여기서는 의도적으로 사용되지 않습니다.

Related MCP server: handoff-mcp

도구

start_sequence

시퀀스를 생성하고 sequenceId를 반환합니다.

add_step

구조화된 단계를 추가합니다. 요약, 가정, 증거, 가설 또는 결정에 사용하세요. 서버는 숨겨진 chain-of-thought를 노출하거나 저장하도록 설계되지 않았습니다.

revise_step

원본 레코드를 보존하면서 이전 단계의 새 개정판을 생성합니다.

get_sequence

시퀀스 메타데이터와 저장된 모든 단계를 반환합니다.

finish_sequence

최종 결론을 저장하고 시퀀스를 완료된 것으로 표시합니다.

reset_sequence

저장된 시퀀스 데이터를 삭제합니다.

로컬 개발

npm install
npm run typecheck
npm run dev

로컬 MCP 엔드포인트는 다음과 같습니다:

http://localhost:8787/mcp

상태 확인:

http://localhost:8787/health

배포

Cloudflare 계정으로 Wrangler를 인증하고 다음을 실행하세요:

npm run deploy

Cloudflare는 wrangler.jsonc의 마이그레이션에서 SQLite 기반 Durable Object를 프로비저닝합니다.

예제 흐름

start_sequence(goal)
      ↓
sequenceId
      ↓
add_step(sequenceId, ...)
      ↓
add_step(sequenceId, ...)
      ↓
revise_step(sequenceId, stepId, ...)
      ↓
get_sequence(sequenceId)
      ↓
finish_sequence(sequenceId, conclusion)

보안 로드맵

MVP는 의도적으로 인증이 없습니다. 엔드포인트를 공개적으로 노출하기 전에 OAuth 또는 다른 인증 계층을 추가하고 시퀀스 소유권을 인증된 주체에 바인딩하세요. Cloudflare의 MCP 지침은 CORS를 인증 메커니즘으로 취급하는 대신 명시적인 Host/Origin 검증과 인증을 권장합니다.

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    A
    quality
    C
    maintenance
    Provides an MCP server that decomposes complex problems into ordered, isolated reasoning contexts, yielding compressed summaries before discarding intermediate steps. Enables sequential or parallel step execution with optional verification for more reliable LLM reasoning.
    1
  • A
    license
    Not graded
    quality
    C
    maintenance
    Remote MCP server for dynamic and reflective problem-solving through structured thinking. Enables step-by-step reasoning with branching, revision tracking, and session management.
    110
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

  • Cloud-hosted MCP server for durable AI memory

  • AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.

View all MCP Connectors

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/luna-agente/mcp-think'

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