mcp-think
mcp-think
一个用于结构化顺序思考的远程 MCP 服务器,基于 Cloudflare Workers 构建。
架构
Cloudflare Worker 通过 Streamable HTTP 暴露
/mcp。MCP SDK v2 定义工具。
Durable Objects + SQLite 持久化每个序列。
序列通过显式的
sequenceId寻址;MCP 协议会话不携带应用状态。
此设计遵循当前的 Cloudflare 指南:新的 MCP 服务器使用 v2/无状态处理器,而多步骤工作流的应用状态位于显式的 Durable Object 边界之后。McpAgent 已弃用,此处刻意不使用。
Related MCP server: Sequential-Thinking
工具
start_sequence
创建序列并返回一个 sequenceId。
add_step
添加一个结构化步骤。用于摘要、假设、证据、推测或决策。服务器不用于暴露或存储隐藏的思维链。
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 deployCloudflare 将根据 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 指南还建议进行显式的 Host/Origin 验证和身份验证,而不是将 CORS 视为身份验证机制。
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.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceA remote MCP server that can be deployed on Cloudflare Workers without requiring authentication, allowing users to add and use custom tools through the Model Context Protocol.1
- AlicenseAqualityDmaintenanceA MCP server that implements sequential thinking protocols, provides structured problem-solving methods, decomposes complex problems into manageable steps, and supports iterative optimization and alternative reasoning paths.12Apache 2.0
- FlicenseNot gradedqualityCmaintenanceA remote MCP server that can be deployed on Cloudflare Workers, using OAuth authentication and SSE transport for tool invocation.
- FlicenseNot gradedqualityCmaintenanceA remote MCP server deployed on Cloudflare Workers for hosting and exposing MCP tools to AI clients via a remote endpoint.
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for generating rough-draft project plans from natural-language prompts.
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/RC-ia/mcp-think'
If you have feedback or need assistance with the MCP directory API, please join our Discord server