Back to MCP directory
publicPublicdnsLocal runtime

my-mcp-servers

该项目通过Git子模块初始化更新MCP服务器相关代码库

article

README

🚀 Git子模块更新、初始化与递归操作

本项目主要聚焦于Git子模块的更新、初始化以及递归操作,帮助你更高效地管理项目中的子模块,确保子模块内容始终保持最新且正确配置。

🚀 快速开始

初始化子模块

若要初始化项目中的子模块,可以使用以下命令:

git submodule init

此命令会读取 .gitmodules 文件,并将子模块的信息配置到本地仓库。

更新子模块

当你需要更新子模块到最新版本时,可执行:

git submodule update

这会将子模块更新到其在 .gitmodules 文件中指定的提交版本。

递归操作

如果你希望在初始化或更新子模块时同时处理子模块的子模块(即递归操作),可以使用:

git submodule update --init --recursive

这个命令会递归地初始化并更新所有子模块及其嵌套的子模块。

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