Skip to content

Commit 4457795

Browse files
chore(mcp): minor cleanup of types and package.json
1 parent 585d01e commit 4457795

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/mcp-server/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"devDependencies": {
4343
"@types/jest": "^29.4.0",
4444
"@types/express": "^5.0.3",
45+
"@types/yargs": "^17.0.8",
4546
"@typescript-eslint/eslint-plugin": "8.31.1",
4647
"@typescript-eslint/parser": "8.31.1",
4748
"eslint": "^8.49.0",

packages/mcp-server/src/http.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const del = async (req: express.Request, res: express.Response) => {
6969
});
7070
};
7171

72-
export const streamableHTTPApp = (options: McpOptions) => {
72+
export const streamableHTTPApp = (options: McpOptions): express.Express => {
7373
const app = express();
7474
app.use(express.json());
7575

0 commit comments

Comments
 (0)