Back to MCP directory
publicPublicdnsLocal runtime

offline-cline-mcp-marketplace

该项目旨在定期从官方Cline Marketplace同步MCP服务器数据,提供离线服务市场功能,包含服务信息存储与同步机制。

article

README

🚀 离线 Cline 市场平台

本项目致力于定期从官方 Cline 市场平台同步 MCP 服务器,为用户提供便捷的离线使用体验。

🚀 快速开始

📦 安装指南

使用以下命令安装项目依赖:

npm install

💻 使用示例

基础用法

使用以下命令启动项目:

npm start

🔧 技术细节

数据库结构

mcp_services.db 数据库包含以下表:

1. services

| 属性 | 详情 | | ---- | ---- | | mcpId | TEXT PRIMARY KEY - 每个服务的唯一标识符。 | | name | TEXT - MCP 服务的名称。 | | description | TEXT - MCP 服务的描述。 | | author | TEXT - 服务的作者。 | | githubUrl | TEXT - 服务 GitHub 仓库的 URL。 | | logoUrl | TEXT - 服务的徽标 URL。 | | category | TEXT - 服务所属的类别。 | | tags | TEXT - 与服务相关的标签(以 JSON 字符串形式存储)。 | | requiresApiKey | BOOLEAN - 表示该服务是否需要 API 密钥。 | | isRecommended | BOOLEAN - 表示该服务是否被推荐。 | | githubStars | INTEGER - GitHub 上的星星数量。 | | downloadCount | INTEGER - 服务下载次数。 | | createdAt | TEXT - 服务创建的时间戳。 | | updatedAt | TEXT - 服务上次更新的时间戳。 |

2. service_details

| 属性 | 详情 | | ---- | ---- | | mcpId | TEXT PRIMARY KEY - 每个服务的唯一标识符(引用 services 表)。 | | githubUrl | TEXT - 服务 GitHub 仓库的 URL。 | | name | TEXT - MCP 服务的名称。 | | author | TEXT - 服务的作者。 | | description | TEXT - 服务的描述。 | | codiconIcon | TEXT - 服务的 Codicon 图标 URL。 | | logoUrl | TEXT - 服务的徽标 URL。 | | category | TEXT - 服务所属的类别。 | | tags | TEXT - 与服务相关的标签(以 JSON 字符串形式存储)。 | | requiresApiKey | BOOLEAN - 表示该服务是否需要 API 密钥。 | | readmeContent | TEXT - 服务 README 文件的内容。 | | llmsInstallationContent | TEXT - LLM 安装内容。 | | isRecommended | BOOLEAN - 表示该服务是否被推荐。 | | githubStars | INTEGER - GitHub 上的星星数量。 | | createdAt | TEXT - 服务详细信息创建的时间戳。 | | updatedAt | TEXT - 服务详细信息上次更新的时间戳。 | | lastGithubSync | TEXT - 上次与 GitHub 同步的时间戳。 |

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