Refactor project setup: remove unused VSCode configuration, update build script to make index.js executable, and add shebang to entry point
This commit is contained in:
Vendored
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"servers": {
|
||||
"google-nano-banana": {
|
||||
"type": "stdio",
|
||||
"command": "node",
|
||||
"args": [
|
||||
"dist/index.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.2 MiB |
+1
-1
@@ -8,7 +8,7 @@
|
||||
"big-banana-mcp": "dist/index.js"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc -p tsconfig.json",
|
||||
"build": "tsc -p tsconfig.json && chmod +x dist/index.js",
|
||||
"dev": "tsx watch src/index.ts",
|
||||
"prepare": "npm run build",
|
||||
"start": "node dist/index.js",
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
||||
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
|
||||
import * as z from 'zod/v4';
|
||||
|
||||
Reference in New Issue
Block a user