InsForge
Insforge MCP 服务器将编码代理转变为全栈构建者,几秒钟内为应用程序添加身份验证、数据库、文件存储、无服务器功能和LLM等后端功能。它是 Insforge 的模型上下文协议服务器。
MCP 服务配置
复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用
{
"mcpServers": {
"insforge": {
"args": [
"-y",
"@insforge/mcp@latest"
],
"command": "npx",
"env": {
"API_BASE_URL": "http://localhost:7130",
"API_KEY": "your_api_key"
}
}
}
}
该服务需要配置环境变量:API_BASE_URL、API_KEY
服务介绍
Insforge MCP 服务器
InsForge 可以将你的编码代理变成全栈构建者,让它们在几秒钟内为你的应用程序添加后端功能,如身份验证、数据库、文件存储、无服务器函数和大语言模型。
这个仓库是 Insforge 的 Model Context Protocol 服务器。
📖 文档
请访问 主 Insforge 仓库获取以下内容:
- 安装和设置说明
- 配置指南
- 可用工具和使用示例
- API 文档
- 贡献指南
🚀 快速开始
自动安装(推荐)
使用 InsForge 安装程序自动配置客户端的 MCP:
bash
# Claude Code
npx @insforge/install --client claude-code --env API_KEY=your_api_key --env API_BASE_URL=http://localhost:7130
# Cursor
npx @insforge/install --client cursor --env API_KEY=your_api_key --env API_BASE_URL=http://localhost:7130
# Windsurf
npx @insforge/install --client windsurf --env API_KEY=your_api_key --env API_BASE_URL=http://localhost:7130
# Cline
npx @insforge/install --client cline --env API_KEY=your_api_key --env API_BASE_URL=http://localhost:7130
# Roo Code
npx @insforge/install --client roocode --env API_KEY=your_api_key --env API_BASE_URL=http://localhost:7130
# Trae
npx @insforge/install --client trae --env API_KEY=your_api_key --env API_BASE_URL=http://localhost:7130
# Install dev version for testing
npx @insforge/install --client cursor --env API_KEY=your_api_key --env API_BASE_URL=http://localhost:7130 --dev
替换:
your_api_key为你的 InsForge API 密钥http://localhost:7130为你的 InsForge 实例 URL(可选,默认为 localhost:7130)
手动安装
如果你更喜欢手动配置 MCP 客户端,请在你的 MCP 设置文件中添加以下内容:
json
{
"mcpServers": {
"insforge": {
"command": "npx",
"args": [
"-y",
"@insforge/mcp@latest"
],
"env": {
"API_KEY": "your_api_key",
"API_BASE_URL": "http://localhost:7130"
}
}
}
}
详细的设置说明,请参阅 Insforge 文档。
📄 许可证
Apache License 2.0 - 详情请参见 LICENSE 文件。
属于 Insforge 项目的一部分。