Ported v0.0.4 from mcp-remote-examples

This commit is contained in:
Glen Maddern 2025-03-20 11:11:45 +11:00
parent d1d7803d9a
commit cb322d877d
11 changed files with 2986 additions and 137 deletions

27
package.json Normal file
View file

@ -0,0 +1,27 @@
{
"name": "mcp-remote",
"version": "0.0.4",
"type": "module",
"bin": "dist/proxy.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"express": "^4.21.2",
"open": "^10.1.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.13.10",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}