Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support extending McpServer with authorization #249

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 13 additions & 16 deletions src/server/mcp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,17 @@ export class McpServer {
*/
public readonly server: Server;

private _registeredResources: { [uri: string]: RegisteredResource } = {};
private _registeredResourceTemplates: {
protected _registeredResources: { [uri: string]: RegisteredResource } = {};
protected _registeredResourceTemplates: {
[name: string]: RegisteredResourceTemplate;
} = {};
private _registeredTools: { [name: string]: RegisteredTool } = {};
private _registeredPrompts: { [name: string]: RegisteredPrompt } = {};
protected _registeredTools: { [name: string]: RegisteredTool } = {};
protected _registeredPrompts: { [name: string]: RegisteredPrompt } = {};

protected _toolHandlersInitialized = false;
protected _completionHandlerInitialized = false;
protected _resourceHandlersInitialized = false;
protected _promptHandlersInitialized = false;

constructor(serverInfo: Implementation, options?: ServerOptions) {
this.server = new Server(serverInfo, options);
Expand All @@ -81,13 +86,11 @@ export class McpServer {
await this.server.close();
}

private _toolHandlersInitialized = false;

private setToolRequestHandlers() {
if (this._toolHandlersInitialized) {
return;
}

this.server.assertCanSetRequestHandler(
ListToolsRequestSchema.shape.method.value,
);
Expand Down Expand Up @@ -177,8 +180,6 @@ export class McpServer {
this._toolHandlersInitialized = true;
}

private _completionHandlerInitialized = false;

private setCompletionRequestHandler() {
if (this._completionHandlerInitialized) {
return;
Expand Down Expand Up @@ -267,8 +268,6 @@ export class McpServer {
return createCompletionResult(suggestions);
}

private _resourceHandlersInitialized = false;

private setResourceRequestHandlers() {
if (this._resourceHandlersInitialized) {
return;
Expand Down Expand Up @@ -366,12 +365,10 @@ export class McpServer {
);

this.setCompletionRequestHandler();

this._resourceHandlersInitialized = true;
}

private _promptHandlersInitialized = false;

private setPromptRequestHandlers() {
if (this._promptHandlersInitialized) {
return;
Expand Down Expand Up @@ -438,7 +435,7 @@ export class McpServer {
);

this.setCompletionRequestHandler();

this._promptHandlersInitialized = true;
}

Expand Down Expand Up @@ -770,7 +767,7 @@ type RegisteredPrompt = {
callback: PromptCallback<undefined | PromptArgsRawShape>;
};

function promptArgumentsFromSchema(
export function promptArgumentsFromSchema(
schema: ZodObject<PromptArgsRawShape>,
): PromptArgument[] {
return Object.entries(schema.shape).map(
Expand Down
8 changes: 7 additions & 1 deletion src/shared/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ export type RequestHandlerExtra = {
* The session ID from the transport, if available.
*/
sessionId?: string;

/**
* The authenticated user, if available.
*/
user?: unknown;
};

/**
Expand Down Expand Up @@ -316,6 +321,7 @@ export abstract class Protocol<
const extra: RequestHandlerExtra = {
signal: abortController.signal,
sessionId: this._transport?.sessionId,
user: this._transport?.user,
};

// Starting with Promise.resolve() puts any synchronous errors into the monad as well.
Expand Down Expand Up @@ -361,7 +367,7 @@ export abstract class Protocol<
private _onprogress(notification: ProgressNotification): void {
const { progressToken, ...params } = notification.params;
const messageId = Number(progressToken);

const handler = this._progressHandlers.get(messageId);
if (!handler) {
this._onerror(new Error(`Received a progress notification for an unknown token: ${JSON.stringify(notification)}`));
Expand Down
5 changes: 5 additions & 0 deletions src/shared/transport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,9 @@ export interface Transport {
* The session ID generated for this connection.
*/
sessionId?: string;

/**
* The authenticated user for this transport session.
*/
user?: unknown;
}