MCP服务器集合
一组模型上下文协议(MCP)服务器,用于增强Claude在Cursor IDE中的功能。
包含的服务器
此存储库包括以下MCP服务器:
1.顺序思维
一种通过结构化思维过程动态和反思性解决问题的工具。它有助于将复杂的问题分解为可管理的步骤,随着理解的加深,可以修改和完善想法。
2.有教训的回忆
内存MCP服务器的增强版本,增加了存储和检索从错误及其解决方案中吸取的经验教训的功能。此服务器有助于维护项目知识并从过去的错误中学习。
3.GitHub集成
实现与GitHub存储库的直接交互,允许直接从Cursor进行存储库管理、文件操作和GitHub API集成。
安装说明
先决条件
- 系统上已安装Node.js
- 带Claude集成的游标IDE
- GitHub个人访问令牌(适用于GitHub MCP服务器)
安装
- 克隆此存储库:
git clone https://github.com/yourusername/mcp-servers-collection.git
cd mcp-servers-collection- 为每台服务器安装依赖关系:
# For Sequential Thinking
cd sequential-thinking
npm install
npm run build
cd ..
# For Memories with Lessons
cd memories-with-lessons-mcp-server
npm install
npm run build
cd ..
# For GitHub Integration
cd servers/src/github
npm install
npm run build
cd ../../..光标中的配置
- 打开的游标
- 转到“设置”
- 导航到MCP服务器部分
- 添加每个服务器:
顺序思维
- 名字:
sequentialthinking - 类型:
command - 命令:
node /path/to/sequential-thinking/dist/index.js
回忆与教训
- 名字:
memories-with-lessons - 类型:
command - 命令:
node /path/to/memories-with-lessons-mcp-server/dist/index.js
GitHub集成
- 名字:
github - 类型:
command - 命令:
env GITHUB_PERSONAL_ACCESS_TOKEN=your_token node /path/to/servers/dist/github/index.js
替换 /path/to/ 使用存储库的实际路径,以及 your_token 使用您的GitHub个人访问令牌。
用法
顺序思维
使用以下提示:
Can you use the Sequential Thinking tool to help me solve this problem?回忆与教训
使用以下提示:
Can you create a lesson from this error I just encountered?GitHub集成
使用以下提示:
Can you create a new repository called "test-project" with a README file?资源
许可证
此集合根据MIT许可证获得许可。有关详细信息,请参阅LICENSE文件。
