@insforge/insforge-mcp
v1.0.53
Published
MCP (Model Context Protocol) server for Insforge backend-as-a-service
Maintainers
Readme
Insforge MCP Server
Model Context Protocol server for Insforge - part of the Insforge monorepo.
Installation
From the root directory:
npm install
cd mcp
npm run buildUsage
# With API key as argument
node dist/index.js --api_key YOUR_API_KEY
# Or with environment variable
API_KEY=your-key node dist/index.jsAvailable Tools
- Database:
create-table,modify-table,delete-table,get-table-schema - Storage:
create-bucket,list-buckets,delete-bucket - Docs:
get-instructions,debug-backend,get-db-api,get-auth-api,get-storage-api
Integration
Claude Code CLI (Recommended)
For local development with Claude Code:
- Start your Insforge backend server locally:
# From the backend directory
docker compose up
# Server will run on http://localhost:7130- Add the MCP server to Claude Code:
# From the InsForge root directory
claude mcp add insforge -- npx tsx mcp/src/index.ts --api_key YOUR_API_KEY
# Verify installation
claude mcp listThe MCP server will automatically connect to your local backend at http://localhost:7130 when Claude Code starts a new session.
To remove:
claude mcp remove insforgeClaude Desktop
Add to Claude Desktop config:
{
"mcpServers": {
"insforge": {
"command": "node",
"args": ["/path/to/InsForge/mcp/dist/index.js", "--api_key", "YOUR_KEY"]
}
}
}Development
npm run dev # Watch mode
npm run build # Production buildPart of Insforge.
