feat(runner-template): MCP Streamable HTTP + OAuth 2.1 resource server template

This commit is contained in:
Marco Sadjadi
2026-05-19 00:27:22 +02:00
parent cc24dd4a63
commit efa2c3f30d
5 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
"name": "bmm-runner",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "tsx src/server.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.4",
"fastify": "5.2.0",
"jose": "5.9.6",
"zod": "3.23.8"
},
"devDependencies": {
"tsx": "4.19.2",
"typescript": "5.7.2"
}
}