MCP (Model Context Protocol) server for Insforge backend-as-a-service
npm install @insforge/mcp
InsForge turns your coding agents into full-stack builders, letting them add backend features like auth, databases, file storage, serverless functions, and LLMs to your apps in seconds.
This repo is Model Context Protocol server for Insforge.
Please visit the main Insforge repository for:
- Installation and setup instructions
- Configuration guide
- Available tools and usage examples
- API documentation
- Contributing guidelines
Use the InsForge installer to automatically configure MCP for your client:
``bashClaude Code
npx @insforge/install --client claude-code --env API_KEY=your_api_key --env API_BASE_URL=http://localhost:7130
Replace:
-
your_api_key with your InsForge API key
- http://localhost:7130 with your InsForge instance URL (optional, defaults to localhost:7130)$3
If you prefer to manually configure your MCP client, add this to your MCP settings file:
`json
{
"mcpServers": {
"insforge": {
"command": "npx",
"args": [
"-y",
"@insforge/mcp@latest"
],
"env": {
"API_KEY": "your_api_key",
"API_BASE_URL": "http://localhost:7130"
}
}
}
}
``For detailed setup instructions, see the Insforge Documentation.
Apache License 2.0 - see the LICENSE file for details.
---
Part of the Insforge project.