mcp-use
Version:
A utility library for integrating Model Context Protocol (MCP) with LangChain, Zod, and related tools. Provides helpers for schema conversion, event streaming, and SDK usage.
6 lines • 714 B
TypeScript
import type { StructuredToolInterface } from '@langchain/core/tools';
import { SystemMessage } from '@langchain/core/messages';
export declare function generateToolDescriptions(tools: StructuredToolInterface[], disallowedTools?: string[]): string[];
export declare function buildSystemPromptContent(template: string, toolDescriptionLines: string[], additionalInstructions?: string): string;
export declare function createSystemMessage(tools: StructuredToolInterface[], systemPromptTemplate: string, serverManagerTemplate: string, useServerManager: boolean, disallowedTools?: string[], userProvidedPrompt?: string, additionalInstructions?: string): SystemMessage;
//# sourceMappingURL=system_prompt_builder.d.ts.map