agentscope-sift / node_modules /@modelcontextprotocol /sdk /dist /cjs /examples /server /demoInMemoryOAuthProvider.d.ts
| import { AuthorizationParams, OAuthServerProvider } from '../../server/auth/provider.js'; | |
| import { OAuthRegisteredClientsStore } from '../../server/auth/clients.js'; | |
| import { OAuthClientInformationFull, OAuthMetadata, OAuthTokens } from '../../shared/auth.js'; | |
| import { Response } from 'express'; | |
| import { AuthInfo } from '../../server/auth/types.js'; | |
| export declare class DemoInMemoryClientsStore implements OAuthRegisteredClientsStore { | |
| private clients; | |
| getClient(clientId: string): Promise<{ | |
| redirect_uris: string[]; | |
| client_id: string; | |
| token_endpoint_auth_method?: string | undefined; | |
| grant_types?: string[] | undefined; | |
| response_types?: string[] | undefined; | |
| client_name?: string | undefined; | |
| client_uri?: string | undefined; | |
| logo_uri?: string | undefined; | |
| scope?: string | undefined; | |
| contacts?: string[] | undefined; | |
| tos_uri?: string | undefined; | |
| policy_uri?: string | undefined; | |
| jwks_uri?: string | undefined; | |
| jwks?: any; | |
| software_id?: string | undefined; | |
| software_version?: string | undefined; | |
| software_statement?: string | undefined; | |
| client_secret?: string | undefined; | |
| client_id_issued_at?: number | undefined; | |
| client_secret_expires_at?: number | undefined; | |
| } | undefined>; | |
| registerClient(clientMetadata: OAuthClientInformationFull): Promise<{ | |
| redirect_uris: string[]; | |
| client_id: string; | |
| token_endpoint_auth_method?: string | undefined; | |
| grant_types?: string[] | undefined; | |
| response_types?: string[] | undefined; | |
| client_name?: string | undefined; | |
| client_uri?: string | undefined; | |
| logo_uri?: string | undefined; | |
| scope?: string | undefined; | |
| contacts?: string[] | undefined; | |
| tos_uri?: string | undefined; | |
| policy_uri?: string | undefined; | |
| jwks_uri?: string | undefined; | |
| jwks?: any; | |
| software_id?: string | undefined; | |
| software_version?: string | undefined; | |
| software_statement?: string | undefined; | |
| client_secret?: string | undefined; | |
| client_id_issued_at?: number | undefined; | |
| client_secret_expires_at?: number | undefined; | |
| }>; | |
| } | |
| /** | |
| * 🚨 DEMO ONLY - NOT FOR PRODUCTION | |
| * | |
| * This example demonstrates MCP OAuth flow but lacks some of the features required for production use, | |
| * for example: | |
| * - Persistent token storage | |
| * - Rate limiting | |
| */ | |
| export declare class DemoInMemoryAuthProvider implements OAuthServerProvider { | |
| private validateResource?; | |
| clientsStore: DemoInMemoryClientsStore; | |
| private codes; | |
| private tokens; | |
| constructor(validateResource?: ((resource?: URL) => boolean) | undefined); | |
| authorize(client: OAuthClientInformationFull, params: AuthorizationParams, res: Response): Promise<void>; | |
| challengeForAuthorizationCode(client: OAuthClientInformationFull, authorizationCode: string): Promise<string>; | |
| exchangeAuthorizationCode(client: OAuthClientInformationFull, authorizationCode: string, _codeVerifier?: string): Promise<OAuthTokens>; | |
| exchangeRefreshToken(_client: OAuthClientInformationFull, _refreshToken: string, _scopes?: string[], _resource?: URL): Promise<OAuthTokens>; | |
| verifyAccessToken(token: string): Promise<AuthInfo>; | |
| } | |
| export declare const setupAuthServer: ({ authServerUrl, mcpServerUrl, strictResource }: { | |
| authServerUrl: URL; | |
| mcpServerUrl: URL; | |
| strictResource: boolean; | |
| }) => OAuthMetadata; | |
| //# sourceMappingURL=demoInMemoryOAuthProvider.d.ts.map |