init
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
.DS_Store
|
||||||
|
node_modules
|
||||||
11
package.json
Normal file
11
package.json
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"name": "mcp-inspector",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"update:mcp": "git subtree pull --prefix=packages/mcp-typescript https://github.com/modelcontextprotocol/typescript-sdk.git main --squash"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"mcp-typescript": "file:packages/mcp-typescript"
|
||||||
|
}
|
||||||
|
}
|
||||||
23
server/package.json
Normal file
23
server/package.json
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"name": "mcp-inspector",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"main": "build/index.js",
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"build": "tsc",
|
||||||
|
"start": "node build/index.js",
|
||||||
|
"dev": "tsx watch --clear-screen=false src/index.ts",
|
||||||
|
"update:mcp": "git subtree pull --prefix=packages/mcp-typescript https://github.com/modelcontextprotocol/typescript-sdk.git main --squash"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/eventsource": "^1.1.15",
|
||||||
|
"@types/express": "^4.17.21",
|
||||||
|
"eventsource": "^2.0.2",
|
||||||
|
"tsx": "^4.19.0",
|
||||||
|
"typescript": "^5.6.2"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"express": "^4.20.0",
|
||||||
|
"mcp-typescript": "file:packages/mcp-typescript"
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user