CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

InsForge

insforge/insforge-mcp
2917 toolsauthSTDIO, HTTPregistry active
Summary

Connects Claude directly to your InsForge backend as a service instance, letting it provision and manage databases, object storage, edge functions, and deployments through natural language. The server exposes InsForge's full API surface, so you can ask Claude to spin up a Postgres table, upload files to S3-compatible storage, deploy serverless functions, or configure authentication without leaving the conversation. Useful when you're prototyping full-stack apps and want your AI to handle the backend scaffolding alongside frontend code. Supports both local InsForge instances and remote deployments. Requires an API key and base URL to connect to your InsForge installation.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

17 tools
fetch-docsFetch Insforge documentation. Use "instructions" for essential backend setup (MANDATORY FIRST), or select specific SDK docs for database, auth, storage, functions, or AI integration.1 params

Fetch Insforge documentation. Use "instructions" for essential backend setup (MANDATORY FIRST), or select specific SDK docs for database, auth, storage, functions, or AI integration.

Parameters* required
docTypestring
Documentation type: "instructions" (essential backend setup - use FIRST), "db-sdk" (database operations), "storage-sdk" (file storage), "functions-sdk" (edge functions), "auth-sdk" (direct SDK methods for custom auth flows), "auth-components-react" (authentication components for React+Vite applications), "auth-components-nextjs" (authentication components for Next.js applications), "ai-integration-sdk" (AI features), "real-time" (real-time pub/sub through WebSockets), "deployment" (deploy frontend applications via MCP tool) one of instructions · auth-sdk · db-sdk · storage-sdk · functions-sdk · ai-integration-sdk
fetch-sdk-docsFetch Insforge SDK documentation for a specific feature and language combination. Supported features: db, storage, functions, auth, ai, realtime Supported languages: typescript, swift, kotlin, rest-api2 params

Fetch Insforge SDK documentation for a specific feature and language combination. Supported features: db, storage, functions, auth, ai, realtime Supported languages: typescript, swift, kotlin, rest-api

Parameters* required
sdkFeaturestring
SDK feature categories: - "db" - Database operations - "storage" - File storage - "functions" - Edge functions - "auth" - User authentication - "ai" - AI features - "realtime" - Real-time WebSockets one of db · storage · functions · auth · ai · realtime
sdkLanguagestring
SDK languages: - "typescript" - JavaScript/TypeScript SDK - "swift" - Swift SDK - "kotlin" - Kotlin SDK - "rest-api" - REST API one of typescript · swift · kotlin · rest-api
get-anon-keyGenerate an anonymous JWT token that never expires. Requires admin API key. Use this for client-side applications that need public access.1 params

Generate an anonymous JWT token that never expires. Requires admin API key. Use this for client-side applications that need public access.

Parameters* required
apiKeystring
API key for authentication (optional if provided via --api_key)
get-table-schemaReturns the detailed schema(including RLS, indexes, constraints, etc.) of a specific table2 params

Returns the detailed schema(including RLS, indexes, constraints, etc.) of a specific table

Parameters* required
apiKeystring
API key for authentication (optional if provided via --api_key)
tableNamestring
Name of the table
get-backend-metadataIndex all backend metadata1 params

Index all backend metadata

Parameters* required
apiKeystring
API key for authentication (optional if provided via --api_key)
run-raw-sqlExecute raw SQL query with optional parameters. Admin access required. Use with caution as it can modify data directly.3 params

Execute raw SQL query with optional parameters. Admin access required. Use with caution as it can modify data directly.

Parameters* required
querystring
apiKeystring
API key for authentication (optional if provided via --api_key)
paramsarray
download-templateCRITICAL: MANDATORY FIRST STEP for all new InsForge projects. Download pre-configured starter template to a temporary directory. After download, you MUST copy files to current directory using the provided command.2 params

CRITICAL: MANDATORY FIRST STEP for all new InsForge projects. Download pre-configured starter template to a temporary directory. After download, you MUST copy files to current directory using the provided command.

Parameters* required
framestring
Framework to use for the template (support React and Next.js)one of react · nextjs
projectNamestring
Name for the project directory (optional, defaults to "insforge-react")
bulk-upsertBulk insert or update data from CSV or JSON file. Supports upsert operations with a unique key.4 params

Bulk insert or update data from CSV or JSON file. Supports upsert operations with a unique key.

Parameters* required
tablestring
apiKeystring
API key for authentication (optional if provided via --api_key)
filePathstring
Path to CSV or JSON file containing data to import
upsertKeystring
create-bucketCreate new storage bucket3 params

Create new storage bucket

Parameters* required
apiKeystring
API key for authentication (optional if provided via --api_key)
isPublicboolean
default: true
bucketNamestring
list-bucketsLists all storage buckets

Lists all storage buckets

No parameter schema in public metadata yet.

delete-bucketDeletes a storage bucket2 params

Deletes a storage bucket

Parameters* required
apiKeystring
API key for authentication (optional if provided via --api_key)
bucketNamestring
Name of the bucket to delete
create-functionCreate a new edge function that runs in Deno runtime. The code must be written to a file first for version control5 params

Create a new edge function that runs in Deno runtime. The code must be written to a file first for version control

Parameters* required
namestring
slugstring
statusstring
one of draft · activedefault: active
codeFilestring
Path to JavaScript file containing the function code. Must export: module.exports = async function(request) { return new Response(...) }
descriptionstring
get-functionGet details of a specific edge function including its code1 params

Get details of a specific edge function including its code

Parameters* required
slugstring
The slug identifier of the function
update-functionUpdate an existing edge function code or metadata5 params

Update an existing edge function code or metadata

Parameters* required
namestring
slugstring
The slug identifier of the function to update
statusstring
one of draft · active
codeFilestring
Path to JavaScript file containing the new function code. Must export: module.exports = async function(request) { return new Response(...) }
descriptionstring
delete-functionDelete an edge function permanently1 params

Delete an edge function permanently

Parameters* required
slugstring
The slug identifier of the function to delete
get-container-logsGet latest logs from a specific container/service. Use this to help debug problems with your app.3 params

Get latest logs from a specific container/service. Use this to help debug problems with your app.

Parameters* required
limitnumber
Number of logs to return (default: 20)default: 20
apiKeystring
API key for authentication (optional if provided via --api_key)
sourcestring
Log source to retrieveone of insforge.logs · postgREST.logs · postgres.logs · function.logs
create-deploymentDeploy source code from a directory. This tool zips files, uploads to cloud storage, and triggers deployment with optional environment variables and project settings.4 params

Deploy source code from a directory. This tool zips files, uploads to cloud storage, and triggers deployment with optional environment variables and project settings.

Parameters* required
metaobject
envVarsarray
projectSettingsobject
sourceDirectorystring
Absolute path to the source directory containing files to deploy (e.g., /Users/name/project or C:\Users\name\project). Do not use relative paths like "."
Insforge Banner

MCP Badge

Insforge MCP Server

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.

Insforge Server MCP server

📖 Documentation

Please visit the main Insforge repository for:

  • Installation and setup instructions
  • Configuration guide
  • Available tools and usage examples
  • API documentation
  • Contributing guidelines

🚀 Quick Start

Automated Installation (Recommended)

Use the InsForge installer to automatically configure MCP for your client:

# 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

Replace:

  • your_api_key with your InsForge API key
  • http://localhost:7130 with your InsForge instance URL (optional, defaults to localhost:7130)

Manual Installation

If you prefer to manually configure your MCP client, add this to your MCP settings file:

{
  "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.

🛠️ Development

If you are contributing to this project or running it locally:

# Install dependencies
npm install

# Run unit tests
npm run test

# Run linter (static analysis)
npm run lint

# Auto-format code
npm run format

# Build the package
npm run build

📄 License

Apache License 2.0 - see the LICENSE file for details.


Part of the Insforge project.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

API_KEY*secret

InsForge project API key

API_BASE_URL*

InsForge backend URL (e.g. https://your-app.us-east.insforge.app)

Categories
Databases
Registryactive
Package@insforge/mcp
TransportSTDIO, HTTP
AuthRequired
UpdatedMar 12, 2026
View on GitHub

Related Databases MCP Servers

View all →
Postgres

ai.waystation/postgres

Connect to your PostgreSQL database to query data and schemas.
54
Read Only Local Postgres Mcp Server

hovecapital/read-only-local-postgres-mcp-server

MCP server for read-only PostgreSQL database queries in Claude Desktop
2
Database Mcp

cocaxcode/database-mcp

MCP server for database connectivity. Multi-DB (PostgreSQL, MySQL, SQLite), 19 tools.
1
Mcp Mysql

io.github.infoinlet-marketplace/mcp-mysql

Read-only MySQL/MariaDB for AI agents — query, list/describe tables, health. SQL-guarded.
Database Admin

io.github.cybeleri/database-admin

Database admin MCP: schema inspection, query optimization for PostgreSQL and MySQL
Postgres Secured (Aegis Zero-Trust)

io.github.yash-0620/postgres-mcp-secured

Enterprise PostgreSQL MCP secured by Aegis Zero-Trust to block unauthorized SQL injections.