Skip to content

Commit 649c61f

Browse files
tonychang04claude
andcommitted
Switch MCP to remote HTTP server
Use hosted MCP server at mcp.insforge.dev instead of local stdio. Users authenticate via OAuth in Cursor settings instead of env vars. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent deee0d6 commit 649c61f

2 files changed

Lines changed: 4 additions & 15 deletions

File tree

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Cursor IDE plugin that gives your AI agent the tools and knowledge to build full
66

77
### MCP Server
88

9-
Connects Cursor to your InsForge backend via the [`@insforge/mcp`](https://www.npmjs.com/package/@insforge/mcp) server, enabling:
9+
Connects Cursor to your InsForge backend via a remote MCP server at `mcp.insforge.dev`, enabling:
1010

1111
- Database schema management (create tables, run SQL, manage indexes and RLS)
1212
- Storage bucket management (create, list, delete buckets)
@@ -38,14 +38,7 @@ Install from the Cursor Marketplace, or install manually:
3838

3939
## Configuration
4040

41-
Set environment variables for MCP authentication:
42-
43-
| Variable | Description | Example |
44-
|----------|-------------|---------|
45-
| `INSFORGE_API_KEY` | Your InsForge API key | `ik_95ea0a...` |
46-
| `INSFORGE_API_BASE_URL` | Your InsForge project URL | `https://abc123.us-east-1.insforge.app` |
47-
48-
Find these in **InsForge Dashboard > Project Settings**.
41+
After installing the plugin, go to **Cursor Settings > Tools & MCP Servers** and click **Connect** on the InsForge MCP server. You'll be redirected to authorize the connection with your InsForge account.
4942

5043
## Structure
5144

mcp.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"insforge": {
3-
"command": "npx",
4-
"args": ["-y", "@insforge/mcp@latest"],
5-
"env": {
6-
"API_KEY": "${INSFORGE_API_KEY}",
7-
"API_BASE_URL": "${INSFORGE_API_BASE_URL}"
8-
}
3+
"type": "http",
4+
"url": "https://mcp.insforge.dev/mcp"
95
}
106
}

0 commit comments

Comments
 (0)