🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@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

latest
npmnpm
Version
1.0.53
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
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 21 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts