
MCP Forge

2025.03.26
0
JavaScriptMCP 服务器生成开发工具集成开发效率
MCP Forge 是一个强大的 MCP 服务器生成器,专为 Smithery 设计,并支持与 Cursor IDE 集成。它能够从模板生成新的 MCP 服务器,提供 Cursor IDE 的集成配置,以及部署到 Smithery 的指令。
View on GitHub
Overview
基本能力
产品定位
MCP Forge 是一个 MCP 服务器生成工具,专注于快速生成和配置 MCP 服务器,支持与开发工具(如 Cursor IDE)的集成。
核心功能
- 从模板生成新的 MCP 服务器
- 提供 Cursor IDE 的集成配置
- 提供部署到 Smithery 的指令
适用场景
- 开发人员需要快速生成和配置 MCP 服务器的场景
- 需要与 Cursor IDE 集成的开发环境
- 需要将 MCP 服务器部署到 Smithery 的场景
工具列表
- Generate MCP Server: 根据指定配置生成新的 MCP 服务器。
- Get Cursor Integration: 提供 Cursor IDE 的集成代码。
- Deploy to Smithery: 提供部署到 Smithery 的指令。
常见问题解答
无相关信息。
使用教程
使用依赖
无明确前置依赖,但需要 Node.js 环境。
安装教程
npm install
调试方式
npm start
集成 Cursor IDE
将以下配置添加到 ~/.cursor/mcp.json
文件中:
{
"mcpServers": {
"mcp-forge": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@your-username/mcp-forge",
"--config",
"{}"
]
}
}
}