Files
alighasami 3d5eaf9445
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

69 lines
1.6 KiB
TypeScript

import type { Tool } from '@langchain/core/tools';
import type { Server } from '@modelcontextprotocol/sdk/server/index.js';
import type { SessionStore } from './SessionStore';
import type { McpTransport } from '../transport/Transport';
export interface SessionInfo {
sessionId: string;
server: Server;
transport: McpTransport;
}
export class SessionManager {
private sessions: Record<string, SessionInfo> = {};
constructor(private store: SessionStore) {}
async registerSession(
sessionId: string,
server: Server,
transport: McpTransport,
tools?: Tool[],
): Promise<void> {
if (!sessionId) return;
await this.store.register(sessionId);
this.sessions[sessionId] = { sessionId, server, transport };
if (tools) {
this.store.setTools(sessionId, tools);
}
}
async destroySession(sessionId: string): Promise<void> {
await this.store.unregister(sessionId);
delete this.sessions[sessionId];
}
getSession(sessionId: string): SessionInfo | undefined {
return this.sessions[sessionId];
}
getTransport(sessionId: string): McpTransport | undefined {
return this.sessions[sessionId]?.transport;
}
getServer(sessionId: string): Server | undefined {
return this.sessions[sessionId]?.server;
}
async isSessionValid(sessionId: string): Promise<boolean> {
return await this.store.validate(sessionId);
}
getTools(sessionId: string): Tool[] | undefined {
return this.store.getTools(sessionId);
}
setTools(sessionId: string, tools: Tool[]): void {
this.store.setTools(sessionId, tools);
}
setStore(store: SessionStore): void {
this.store = store;
}
getStore(): SessionStore {
return this.store;
}
}