New:Socket for Asana Is Now Available.Learn more
Get Started

@insforge/insforge-mcp

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@insforge/insforge-mcp

MCP (Model Context Protocol) server for Insforge backend-as-a-service

npmnpm
Version
1.0.49
Version published
Maintainers
1
Created
Source

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 build

Usage

# 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.js

Available 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

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 list

The 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 insforge

Claude 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 build

Part of Insforge.

Keywords

mcp

FAQs

Package last updated on 17 Sep 2025

Related posts