Skip to content

Commit dc3fee9

Browse files
authored
Merge pull request #23 from QuantGeekDev/sse
Sse
2 parents 8f1466a + bb5261c commit dc3fee9

File tree

16 files changed

+1546
-428
lines changed

16 files changed

+1546
-428
lines changed

Diff for: README.md

+159-248
Large diffs are not rendered by default.

Diff for: package-lock.json

+163-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "mcp-framework",
3-
"version": "0.1.22",
3+
"version": "0.1.23",
4+
45
"description": "Framework for building Model Context Protocol (MCP) servers in Typescript",
56
"type": "module",
67
"author": "Alex Andru <[email protected]>",
@@ -33,7 +34,11 @@
3334
"anthropic",
3435
"ai",
3536
"framework",
36-
"tools"
37+
"tools",
38+
"modelcontextprotocol",
39+
"model",
40+
"context",
41+
"protocol"
3742
],
3843
"peerDependencies": {
3944
"@modelcontextprotocol/sdk": "^0.6.0"
@@ -43,13 +48,16 @@
4348
"commander": "^12.1.0",
4449
"execa": "^9.5.2",
4550
"find-up": "^7.0.0",
51+
"jsonwebtoken": "^9.0.2",
4652
"prompts": "^2.4.2",
4753
"typescript": "^5.3.3",
4854
"zod": "^3.23.8"
4955
},
5056
"devDependencies": {
5157
"@modelcontextprotocol/sdk": "^0.6.0",
58+
"@types/content-type": "^1.1.8",
5259
"@types/jest": "^29.5.12",
60+
"@types/jsonwebtoken": "^9.0.8",
5361
"@types/node": "^20.11.24",
5462
"jest": "^29.7.0",
5563
"ts-jest": "^29.1.2"

Diff for: src/auth/index.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export * from "./types.js";
2+
export * from "./providers/jwt.js";
3+
export * from "./providers/apikey.js";
4+
5+
export type { AuthProvider, AuthConfig, AuthResult } from "./types.js";
6+
export type { JWTConfig } from "./providers/jwt.js";
7+
export type { APIKeyConfig } from "./providers/apikey.js";

0 commit comments

Comments
 (0)