This commit is contained in:
Ashwin Bhat
2024-10-07 13:36:46 -07:00
commit 252070daf1
3 changed files with 36 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
.DS_Store
node_modules

11
package.json Normal file
View 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
View 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"
}
}