UNPKG

@dollhousemcp/mcp-server

Version:

DollhouseMCP - A Model Context Protocol (MCP) server that enables dynamic AI persona management from markdown files, allowing Claude and other compatible AI assistants to activate and switch between different behavioral personas.

26 lines 711 B
/** * BuildInfoTools - MCP tools for retrieving build and runtime information */ import { BuildInfoService } from '../../services/BuildInfoService.js'; /** * Get build info tools */ export declare function getBuildInfoTools(buildInfoService: BuildInfoService): { tool: { name: string; description: string; inputSchema: { type: "object"; properties: {}; required: never[]; }; }; handler: () => Promise<{ structuredContent: import("../../services/BuildInfoService.js").BuildInfo; content: { type: string; text: string; }[]; }>; }[]; //# sourceMappingURL=BuildInfoTools.d.ts.map