UNPKG

mcp-use

Version:

Opinionated MCP Framework for TypeScript (@modelcontextprotocol/sdk compatible) - Build MCP Agents, Clients and Servers with support for ChatGPT Apps, Code Mode, OAuth, Notifications, Sampling, Observability and more.

6 lines 699 B
import type { StructuredToolInterface } from "@langchain/core/tools"; import { SystemMessage } from "langchain"; 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