Back to MCP directory
publicPublicdnsLocal runtime

clever-doc-mcp-server

这是一个基于FastMCP的MCP演示服务器,用于托管Clever Cloud的文档服务。项目支持通过MCP客户端连接,并提供开发测试工具。

article

README

🚀 Clever Cloud 文档 MCP 服务器

本 MCP 演示服务器基于 FastMCP 构建,用于展示 Clever Cloud 的相关文档。该服务器由 davlgd 基于 MCP Clever Demo 开发。

🚀 快速开始

使用方法

若要在 MCP 客户端(例如 Claude Desktop)中使用此服务器,可参考以下配置:

{
  "mcp-clever-demo": {
    "command": "npx",
    "args": [ "-y", "mcp-clever-demo" ]
  }
}

💻 使用示例

基础用法

在 MCP 客户端中配置上述 JSON 内容后,即可连接使用该 MCP 服务器。

🛠️ 开发指南

使用 mcp-cli 测试

测试和调试服务器的最快方法是使用 fastmcp dev 命令:

npx fastmcp dev src/index.ts

此命令会使用 mcp-cli 运行您的服务器,以进行测试和调试,并直接在终端中显示结果。

使用 MCP Inspector 检查

另一种方式是使用官方 MCP Inspector,通过 Web UI 检查您的服务器,使用以下命令:

npx fastmcp inspect src/index.ts

📄 许可证

此项目遵循 MIT License 进行许可。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client