Skip to content

Commit 8265bba

Browse files
committed
merge: resolve tsconfig.tsbuildinfo conflict with main
Made-with: Cursor
2 parents 5aeea46 + feb076f commit 8265bba

6 files changed

Lines changed: 107 additions & 16 deletions

File tree

.github/workflows/semgrep.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Semgrep
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
11+
jobs:
12+
scan:
13+
uses: kernel/security-workflows/.github/workflows/semgrep.yml@main
14+
with:
15+
extra-configs: '--config p/javascript --config p/typescript'
16+
codebase-description: 'Hosted MCP server handling authenticated tool execution and browser session data'
17+
secrets: inherit

.semgrepignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules/
2+
dist/
3+
.next/
4+
out/
5+
bun.lock
6+
package-lock.json
7+
**/*.test.ts
8+
**/*.spec.ts

bun.lock

Lines changed: 78 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,17 @@
3333
"@clerk/nextjs": "^6.32.0",
3434
"@clerk/themes": "^2.4.19",
3535
"@mcp-ui/server": "^5.10.0",
36+
"@modelcontextprotocol/sdk": "1.26.0",
3637
"@onkernel/sdk": "^0.35.0",
3738
"@types/jsonwebtoken": "^9.0.10",
3839
"@types/redis": "^4.0.11",
39-
"@vercel/mcp-adapter": "^1.0.0",
4040
"builtin-modules": "^5.0.0",
4141
"install": "^0.13.0",
4242
"jose": "^6.0.11",
4343
"jsonwebtoken": "^9.0.2",
4444
"jszip": "^3.10.1",
4545
"lucide-react": "^0.534.0",
46+
"mcp-handler": "^1.1.0",
4647
"next": "^16.0.10",
4748
"next-themes": "^0.4.4",
4849
"playwright": "^1.49.1",

src/app/[transport]/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
createMcpHandler,
33
experimental_withMcpAuth as withMcpAuth,
4-
} from "@vercel/mcp-adapter";
4+
} from "mcp-handler";
55
import { verifyToken } from "@clerk/nextjs/server";
66
import { NextRequest } from "next/server";
77
import { Kernel } from "@onkernel/sdk";

tsconfig.tsbuildinfo

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)