We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6759c46 commit a0d8ec1Copy full SHA for a0d8ec1
server/package.json
@@ -6,8 +6,13 @@
6
"author": "Anthropic, PBC (https://anthropic.com)",
7
"homepage": "https://modelcontextprotocol.github.io",
8
"bugs": "https://github.com/modelcontextprotocol/inspector/issues",
9
- "main": "build/index.js",
10
"type": "module",
+ "bin": {
11
+ "mcp-inspector-server": "build/index.js"
12
+ },
13
+ "files": [
14
+ "build"
15
+ ],
16
"scripts": {
17
"build": "tsc",
18
"start": "node build/index.js",
server/src/index.ts
@@ -1,3 +1,5 @@
1
+#!/usr/bin/env node
2
+
3
import cors from "cors";
4
import EventSource from "eventsource";
5
0 commit comments